summaryrefslogtreecommitdiffhomepage
path: root/Public/Kits/System.Core/Defs.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'Public/Kits/System.Core/Defs.hxx')
-rw-r--r--Public/Kits/System.Core/Defs.hxx19
1 files changed, 18 insertions, 1 deletions
diff --git a/Public/Kits/System.Core/Defs.hxx b/Public/Kits/System.Core/Defs.hxx
index bcb3585c..9a17d571 100644
--- a/Public/Kits/System.Core/Defs.hxx
+++ b/Public/Kits/System.Core/Defs.hxx
@@ -108,4 +108,21 @@ enum HcProcessCall {
kProcessCallsCount = 7,
};
-#include <System.Core/HintBase.hxx>
+#include <System.Core/Hint.hxx>
+
+class Exception {
+ public:
+ explicit Exception() = default;
+ virtual ~Exception() = default;
+
+ public:
+ HCORE_COPY_DEFAULT(Exception);
+
+ public:
+ const char *Name();
+ const char *Reason();
+
+ private:
+ const char *mReason{
+ "System.Core: System Exception: Catastrophic failure!"};
+};