4jcraft/Minecraft.World/Level/LevelConflictException.h
2026-03-05 03:29:23 -05:00

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);
};