GM2Calc 2.3.0
Loading...
Searching...
No Matches
gm2_error.hpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of GM2Calc.
3//
4// GM2Calc is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published
6// by the Free Software Foundation, either version 3 of the License,
7// or (at your option) any later version.
8//
9// GM2Calc is distributed in the hope that it will be useful, but
10// WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// General Public License for more details.
13//
14// You should have received a copy of the GNU General Public License
15// along with GM2Calc. If not, see
16// <http://www.gnu.org/licenses/>.
17// ====================================================================
18
19#ifndef GM2_ERROR_HPP
20#define GM2_ERROR_HPP
21
22#include <stdexcept>
23#include <string>
24
25namespace gm2calc {
26
27class Error : public std::runtime_error {
28public:
29 explicit Error(const char* msg) : std::runtime_error(msg) {}
30 explicit Error(const std::string& msg) : std::runtime_error(msg) {}
31};
32
33/**
34 * @class ESetupError
35 * @brief Spectrum generator was not setup correctly
36 */
37class ESetupError : public Error {
38public:
39 explicit ESetupError(const char* msg) : Error(msg) {}
40 explicit ESetupError(const std::string& msg) : Error(msg) {}
41};
42
43class EInvalidInput : public Error {
44public:
45 explicit EInvalidInput(const char* msg) : Error(msg) {}
46 explicit EInvalidInput(const std::string& msg) : Error(msg) {}
47};
48
49class EPhysicalProblem : public Error {
50public:
51 explicit EPhysicalProblem(const char* msg) : Error(msg) {}
52 explicit EPhysicalProblem(const std::string& msg) : Error(msg) {}
53};
54
55class EReadError : public Error {
56public:
57 explicit EReadError(const char* msg) : Error(msg) {}
58 explicit EReadError(const std::string& msg) : Error(msg) {}
59};
60
61} // namespace gm2calc
62
63#endif
EInvalidInput(const std::string &msg)
Definition gm2_error.hpp:46
EInvalidInput(const char *msg)
Definition gm2_error.hpp:45
EPhysicalProblem(const std::string &msg)
Definition gm2_error.hpp:52
EPhysicalProblem(const char *msg)
Definition gm2_error.hpp:51
EReadError(const std::string &msg)
Definition gm2_error.hpp:58
EReadError(const char *msg)
Definition gm2_error.hpp:57
Spectrum generator was not setup correctly.
Definition gm2_error.hpp:37
ESetupError(const char *msg)
Definition gm2_error.hpp:39
ESetupError(const std::string &msg)
Definition gm2_error.hpp:40
Error(const char *msg)
Definition gm2_error.hpp:29
Error(const std::string &msg)
Definition gm2_error.hpp:30