blob: 6f3ba75e6b5fba44bf4247dfe1986d35c623d55e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#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);
};
|