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