mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LCE-Revelations.git
synced 2026-05-22 15:55:11 +00:00
29 lines
459 B
C++
29 lines
459 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
class EOFException : public std::exception
|
|
{
|
|
|
|
};
|
|
|
|
class IllegalArgumentException : public std::exception
|
|
{
|
|
public:
|
|
wstring information;
|
|
|
|
IllegalArgumentException(const wstring& information);
|
|
};
|
|
|
|
class IOException : public std::exception
|
|
{
|
|
public:
|
|
wstring information;
|
|
|
|
IOException(const wstring& information);
|
|
};
|
|
|
|
class RuntimeException : public std::exception
|
|
{
|
|
public:
|
|
RuntimeException(const wstring& information);
|
|
}; |