/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-04 * Changed: 2024-05-31 * * */ #include using ls::std::core::Exception; using ls::std::core::IllegalArgumentException; using std::string; IllegalArgumentException::IllegalArgumentException() : Exception("IllegalArgumentException") {} IllegalArgumentException::IllegalArgumentException(const string &_message) : IllegalArgumentException() { this->_setMessage(_message); } IllegalArgumentException::~IllegalArgumentException() noexcept = default; const char *IllegalArgumentException::what() const noexcept { return this->_getIdentifiedMessage("passed argument is not valid!"); }