aboutsummaryrefslogtreecommitdiff
path: root/include/cru/osx/Exception.hpp
blob: 34c4a06c6d4c28f0a1c4e18e695ef44971e1dbf8 (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include "cru/platform/Exception.hpp"

namespace cru::platform::osx {
  class OsxException : PlatformException {
    public:
    using PlatformException::PlatformException;
  };
}