16 explicit Error(
const std::string &errMessage,
const int &errCode = 1);
27 explicit DeveloperError(
const std::string &errMessage,
const int &errCode = 1);
34 explicit Warning(
const std::string &errMessage);
Object used to print an error message for developers, and stop the code.
Definition: exceptions.h:21
DeveloperError(const std::string &errMessage, const int &errCode=1)
object constructor.
Definition: exceptions.cpp:18
Object used to print an error message, and stop the code.
Definition: exceptions.h:10
Error(const std::string &errMessage, const int &errCode=1)
object constructor.
Definition: exceptions.cpp:6
Object to print a warning to the user, without stopping the code.
Definition: exceptions.h:32