NotImplementedException.hpp 696 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-03-27
  6. * Changed: 2024-05-31
  7. *
  8. * */
  9. #ifndef LS_STD_NOT_IMPLEMENTED_EXCEPTION_HPP
  10. #define LS_STD_NOT_IMPLEMENTED_EXCEPTION_HPP
  11. #include <ls-std/core/definition.hpp>
  12. #include "Exception.hpp"
  13. namespace ls::std::core
  14. {
  15. ls_std_class NotImplementedException final : public Exception
  16. {
  17. public:
  18. NotImplementedException();
  19. explicit NotImplementedException(const ::std::string &_message);
  20. ~NotImplementedException() noexcept override;
  21. [[nodiscard]] const char *what() const noexcept override;
  22. };
  23. }
  24. #endif