Hyperiso
1.0.3
Modular flavour-physics calculations, Wilson coefficients and statistical inference
Loading...
Searching...
No Matches
LoggingException.h
Go to the documentation of this file.
1
#ifndef LOGGER_EXCEPTION_H
2
#define LOGGER_EXCEPTION_H
3
4
#include <exception>
5
#include <string>
6
7
class
LoggingException
:
public
std::exception {
8
public
:
9
explicit
LoggingException
(
const
std::string& message)
10
: message_(message) {}
11
12
virtual
const
char
*
what
() const noexcept
override
{
13
return
message_.c_str();
14
}
15
16
private
:
17
std::string message_;
18
};
19
20
#endif
// LOGGER_EXCEPTION_H
LoggingException
Definition
LoggingException.h:7
LoggingException::what
virtual const char * what() const noexcept override
Definition
LoggingException.h:12
LoggingException::LoggingException
LoggingException(const std::string &message)
Definition
LoggingException.h:9
Hyperiso
core
src
Common
LoggingException.h
Generated by
1.9.8