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