diff options
Diffstat (limited to 'include/cru/osx/Exception.hpp')
-rw-r--r-- | include/cru/osx/Exception.hpp | 9 |
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; + }; +} |