FileNotFoundException.hpp 714 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-17
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #ifndef LS_STD_FILE_NOT_FOUND_EXCEPTION_HPP
  10. #define LS_STD_FILE_NOT_FOUND_EXCEPTION_HPP
  11. #include <cstring>
  12. #include <exception>
  13. #include <ls-std/os/dynamic-goal.hpp>
  14. #include <string>
  15. //TODO: pass parameters, use class, show class name
  16. namespace ls::std::core
  17. {
  18. class LS_STD_DYNAMIC_GOAL FileNotFoundException : public ::std::exception
  19. {
  20. public:
  21. FileNotFoundException();
  22. ~FileNotFoundException() override;
  23. [[nodiscard]] const char *what() const noexcept override;
  24. };
  25. }
  26. #endif