mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-24 22:04:54 +00:00
29 lines
464 B
C++
29 lines
464 B
C++
#pragma once
|
|
|
|
|
|
class EOFException : public std::exception
|
|
{
|
|
|
|
};
|
|
|
|
class IllegalArgumentException : public std::exception
|
|
{
|
|
public:
|
|
std::wstring information;
|
|
|
|
IllegalArgumentException(const std::wstring& information);
|
|
};
|
|
|
|
class IOException : public std::exception
|
|
{
|
|
public:
|
|
std::wstring information;
|
|
|
|
IOException(const std::wstring& information);
|
|
};
|
|
|
|
class RuntimeException : public std::exception
|
|
{
|
|
public:
|
|
RuntimeException(const std::wstring& information);
|
|
}; |