autotier
Automatic Tiering Fuse Filesystem
Exceptions.hpp
1 // -*- C++ -*-
2 /*
3  * Copyright (C) 2021 Joshua Boudreau <jboudreau@45drives.com>
4  *
5  * This file is part of lib45d.
6  *
7  * lib45d is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * lib45d is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with lib45d. If not, see <https://www.gnu.org/licenses/>.
19  */
20 
21 #pragma once
22 
23 #include <exception>
24 
25 namespace ffd {
30  class ConfigException : public std::exception {
31  public:
37  ConfigException(std::string what) : what_(what) {}
43  const char *what(void) const noexcept {
44  return what_.c_str();
45  }
46  private:
47  std::string what_;
48  };
49 
55  public:
56  NoConfigException(std::string what) : ConfigException(what) {}
57  };
58 
64  public:
66  };
67 
74  public:
76  };
77 
83  private:
84  std::string what_;
85  public:
86  ByteParseException(std::string what) : ConfigException(what) {}
87  };
88 
94  private:
95  std::string what_;
96  public:
97  QuotaParseException(std::string what) : ConfigException(what) {}
98  };
99 }
ffd::NoConfigException
Throw this exception when the config file fails to open.
Definition: Exceptions.hpp:54
ffd::ByteParseException
Throw this exception when Bytes::set() fails to parse string.
Definition: Exceptions.hpp:82
ffd
lib45d documentation (not included in this repo, see lib45d source)
Definition: main-page.dox:21
ffd::QuotaParseException::what_
std::string what_
String containing explanation message.
Definition: Exceptions.hpp:95
ffd::MissingOptionException
Throw this exception when a config entry is missing.
Definition: Exceptions.hpp:63
ffd::ConfigException::what
const char * what(void) const noexcept
Return string containing explanation message.
Definition: Exceptions.hpp:43
ffd::ConfigException::ConfigException
ConfigException(std::string what)
Construct a new Exception object.
Definition: Exceptions.hpp:37
ffd::ConfigException
Exceptions thrown by this library.
Definition: Exceptions.hpp:30
ffd::ConfigGuardException
Throw this exception when a ConfigGuard is constructed or get_from() is called when the config is alr...
Definition: Exceptions.hpp:73
ffd::ConfigException::what_
std::string what_
String containing explanation message.
Definition: Exceptions.hpp:47
ffd::QuotaParseException
Throw this exception when Quota::parse_fraction() fails to parse string.
Definition: Exceptions.hpp:93
ffd::ByteParseException::what_
std::string what_
String containing explanation message.
Definition: Exceptions.hpp:84