feat: implement all exception types

This commit is contained in:
izzy 2026-03-07 17:05:15 -05:00
parent be6af511bd
commit cfce17c19b

View file

@ -4,7 +4,10 @@
class EOFException : public std::runtime_error
{
public:
std::wstring information;
EOFException(const std::wstring &information);
};
class IllegalArgumentException : public std::runtime_error
@ -26,5 +29,7 @@ public:
class RuntimeException : public std::runtime_error
{
public:
std::wstring information;
RuntimeException(const std::wstring& information);
};