IllegalArithmeticOperationException.cpp 668 B

12345678910111213141516171819
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-04
  6. * Changed: 2023-02-04
  7. *
  8. * */
  9. #include <ls-std/core/exception/IllegalArithmeticOperationException.hpp>
  10. ls::std::core::IllegalArithmeticOperationException::IllegalArithmeticOperationException() = default;
  11. ls::std::core::IllegalArithmeticOperationException::~IllegalArithmeticOperationException() = default;
  12. const char *ls::std::core::IllegalArithmeticOperationException::what() const noexcept
  13. {
  14. return "IllegalArithmeticOperationException thrown - arithmetic operation is not allowed!";
  15. }