aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/LevelConflictException.h
blob: e8b2bc32a54d0ce00b6ce1e1bed5a77426e25374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once
using namespace std;

#include "Exceptions.h"

class LevelConflictException : public RuntimeException
{
private:
	static const __int32 serialVersionUID = 1L;
    
public:
	LevelConflictException(const wstring& msg);
};