mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 05:45:43 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
22
Minecraft.World/ConsoleJavaLibs/Exceptions.h
Normal file
22
Minecraft.World/ConsoleJavaLibs/Exceptions.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#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);
|
||||
};
|
||||
Reference in New Issue
Block a user