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