aboutsummaryrefslogtreecommitdiff
path: root/include/cru/platform/exception.hpp
blob: 6dae08c5a8dab43ede65d05967c23ccbbde38c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once
#include "cru/common/pre_config.hpp"

#include <stdexcept>

namespace cru::platform {
class PlatformException : public std::runtime_error {
 public:
  using runtime_error::runtime_error; // inherent constructors
};
}  // namespace cru::platform