mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 14:33:35 +00:00
13 lines
224 B
C++
13 lines
224 B
C++
#pragma once
|
|
|
|
|
|
#include "../Util/Exceptions.h"
|
|
|
|
class LevelConflictException : public RuntimeException
|
|
{
|
|
private:
|
|
static const __int32 serialVersionUID = 1L;
|
|
|
|
public:
|
|
LevelConflictException(const std::wstring& msg);
|
|
}; |