IncompleteJsonException.hpp 687 B

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