1 2 3 4 5 6 7 8 9 10 11 12 13
#pragma once using namespace std; #include "Exceptions.h" class LevelConflictException : public RuntimeException { private: static const __int32 serialVersionUID = 1L; public: LevelConflictException(const wstring& msg); };