1 #ifndef GENERALERRORS_H 2 #define GENERALERRORS_H 21 EmptyList(std::string msg) : std::runtime_error(msg) {};
27 std::runtime_error(
"Empty list given!") {};
48 std::runtime_error(
"Bad value appeard!") {};
Generel exceptions describind the incorrectness of value.
Definition: GeneralErrors.h:35
EmptyList()
Exception with default information.
Definition: GeneralErrors.h:26
Definition: ContainerMath.h:11
IncorrectValue(std::string msg)
Exception with custom information.
Definition: GeneralErrors.h:42
IncorrectValue()
Exception with default information.
Definition: GeneralErrors.h:47
EmptyList(std::string msg)
Exception with custom information.
Definition: GeneralErrors.h:21
Generel exceptions describing empty container.
Definition: GeneralErrors.h:14