4jcraft/targets/minecraft/world/level/LevelConflictException.h
2026-04-01 13:27:58 -05:00

11 lines
222 B
C++

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