the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#pragma once
2using namespace std;
3
4class EOFException : public std::exception
5{
6
7};
8
9class IllegalArgumentException : public std::exception
10{
11public:
12 wstring information;
13
14 IllegalArgumentException(const wstring& information);
15};
16
17class IOException : public std::exception
18{
19public:
20 wstring information;
21
22 IOException(const wstring& information);
23};
24
25class RuntimeException : public std::exception
26{
27public:
28 RuntimeException(const wstring& information);
29};