4jcraft/Minecraft.World/Util/Exceptions.h
2026-03-13 17:06:56 -05:00

22 lines
476 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);
};