aboutsummaryrefslogtreecommitdiff
path: root/include/cru/base/platform/Exception.h
blob: 74dd6ad49add7a35786af072c9f1a1494d9499bd (plain)
1
2
3
4
5
6
7
8
9
10
11
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