NotImplementedException.hpp 811 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-03-27
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_NOT_IMPLEMENTED_EXCEPTION_HPP
  10. #define LS_STD_NOT_IMPLEMENTED_EXCEPTION_HPP
  11. #include "Exception.hpp"
  12. #include <ls-std/os/dynamic-goal.hpp>
  13. #include <string>
  14. /*
  15. * @doc: class(name: 'NotImplementedException', package: 'core')
  16. * */
  17. namespace ls::std::core
  18. {
  19. class LS_STD_DYNAMIC_GOAL NotImplementedException : public ls::std::core::Exception
  20. {
  21. public:
  22. NotImplementedException();
  23. explicit NotImplementedException(const ::std::string &_message);
  24. ~NotImplementedException() noexcept override;
  25. [[nodiscard]] const char *what() const noexcept override;
  26. };
  27. }
  28. #endif