blob: 0241947b47f9c2d4796b93e90491b9690f922d09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  | 
#pragma once
#include "../Base.hpp"
#include "../Exception.hpp"
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
 
  |