IllegalArgumentException.cpp 584 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/IllegalArgumentException.hpp>
  10. ls::std::core::IllegalArgumentException::IllegalArgumentException() = default;
  11. ls::std::core::IllegalArgumentException::~IllegalArgumentException() = default;
  12. const char *ls::std::core::IllegalArgumentException::what() const noexcept
  13. {
  14. return "IllegalArgumentException thrown - passed argument is not valid!";
  15. }