blob: c1b649f3c692c290ad0c3590cf5471e13242e584 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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_COPY(PlatformException)
CRU_DEFAULT_MOVE(PlatformException)
CRU_DEFAULT_DESTRUCTOR(PlatformException)
};
} // namespace cru::platform
|