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