aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/Exception.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2021-08-19 23:27:00 +0800
committercrupest <crupest@outlook.com>2021-08-19 23:27:00 +0800
commitbcb879240f96764b8f17da2878fc0784c51b6054 (patch)
tree0a65cb55261a1d932c59ee3e66b89051940b2413 /include/cru/osx/Exception.hpp
parentf5d7355579d51bc25d88f9884e0ed345b6256d23 (diff)
downloadcru-bcb879240f96764b8f17da2878fc0784c51b6054.tar.gz
cru-bcb879240f96764b8f17da2878fc0784c51b6054.tar.bz2
cru-bcb879240f96764b8f17da2878fc0784c51b6054.zip
...
Diffstat (limited to 'include/cru/osx/Exception.hpp')
-rw-r--r--include/cru/osx/Exception.hpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/cru/osx/Exception.hpp b/include/cru/osx/Exception.hpp
new file mode 100644
index 00000000..34c4a06c
--- /dev/null
+++ b/include/cru/osx/Exception.hpp
@@ -0,0 +1,9 @@
+#pragma once
+#include "cru/platform/Exception.hpp"
+
+namespace cru::platform::osx {
+ class OsxException : PlatformException {
+ public:
+ using PlatformException::PlatformException;
+ };
+}