Files
GabsPuNs-Project_Zenith_Main/Minecraft.World/LevelConflictException.h
2026-05-14 19:16:33 -04:00

13 lines
231 B
C++

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