/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-03-27 * Changed: 2023-05-19 * * */ #include #include #include using ls::std::core::Exception; using ls::std::core::ExceptionMessage; using ls::std::core::NotImplementedException; using std::move; using std::string; NotImplementedException::NotImplementedException() : Exception("NotImplementedException") {} NotImplementedException::NotImplementedException(const string &_message) : NotImplementedException() { this->_setMessage(_message); } NotImplementedException::~NotImplementedException() noexcept = default; const char *NotImplementedException::what() const noexcept { return this->_getIdentifiedMessage("method is not implemented and should not be used!"); }