From dfe62dcf8bcefc523b466e127c3edc4dc2756629 Mon Sep 17 00:00:00 2001 From: crupest Date: Sun, 6 Oct 2024 13:57:39 +0800 Subject: Rename common to base. --- include/cru/base/platform/Exception.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 include/cru/base/platform/Exception.h (limited to 'include/cru/base/platform/Exception.h') diff --git a/include/cru/base/platform/Exception.h b/include/cru/base/platform/Exception.h new file mode 100644 index 00000000..74dd6ad4 --- /dev/null +++ b/include/cru/base/platform/Exception.h @@ -0,0 +1,12 @@ +#pragma once +#include "../Base.h" +#include "../Exception.h" + +namespace cru::platform { +class CRU_BASE_API PlatformException : public Exception { + public: + using Exception::Exception; // inherit constructors + + CRU_DEFAULT_DESTRUCTOR(PlatformException) +}; +} // namespace cru::platform -- cgit v1.2.3