DoorKeeper/include/doorkeeper/components/exception.hpp

15 lines
271 B
C++
Raw Normal View History

#ifndef idE137842DE628405E9154561168FFEE60
#define idE137842DE628405E9154561168FFEE60
#include <exception>
namespace dk {
class DoorKeeperException : public std::exception {
};
class SizeMismatchException : public DoorKeeperException {
};
} //namespace dk
#endif