Files
4jcraft/Minecraft.World/Level/LevelConflictException.h

13 lines
239 B
C++

#pragma once
using namespace std;
#include "../Util/Exceptions.h"
class LevelConflictException : public RuntimeException
{
private:
static const __int32 serialVersionUID = 1L;
public:
LevelConflictException(const wstring& msg);
};