| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Co-Author: Claude Sonnet 4.6 (LLM)
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-07
- * Changed: 2026-06-23
- *
- * */
- #ifndef LS_STD_EXCEPTION_MESSAGE_HPP
- #define LS_STD_EXCEPTION_MESSAGE_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- /*
- * @doc: class(name: 'ExceptionMessage', package: 'core')
- * @doc: core.ExceptionMessage.description('This is the message container being used by these libraries provided exceptions.')
- * */
- namespace ls::standard::core
- {
- class LS_STD_DYNAMIC_GOAL ExceptionMessage
- {
- public:
- explicit ExceptionMessage(::std::string _message);
- ~ExceptionMessage();
- char *toCharacterPointer();
- private:
- ::std::string message{};
- };
- }
- #endif
|