aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/platform/osx/Exception.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/common/platform/osx/Exception.h')
-rw-r--r--include/cru/common/platform/osx/Exception.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/cru/common/platform/osx/Exception.h b/include/cru/common/platform/osx/Exception.h
new file mode 100644
index 00000000..53e874e9
--- /dev/null
+++ b/include/cru/common/platform/osx/Exception.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "../../PreConfig.h"
+#ifdef CRU_PLATFORM_OSX
+
+#include "../Exception.h"
+
+namespace cru::platform::osx {
+class OsxException : public PlatformException {
+ public:
+ using PlatformException::PlatformException;
+};
+} // namespace cru::platform::osx
+
+#endif