blob: 5d057c652e524aedafc52e9cf4ec69b845b663d2 (
plain)
1
2
3
4
5
6
7
8
9
  | 
#pragma once
#include "cru/platform/Exception.hpp"
namespace cru::platform::osx {
class OsxException : public PlatformException {
 public:
  using PlatformException::PlatformException;
};
}  // namespace cru::platform::osx
 
  |