]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/exceptions.h
modified iron amount a bit
[dragonfireclient.git] / src / exceptions.h
index 0f95bd07a9de1e42d37f53ec409f48003c09b4d8..40a0db4aa86110e14f96dac38e0e085a7282a270 100644 (file)
@@ -124,6 +124,22 @@ class ProcessingLimitException : public BaseException
        {}
 };
 
+class CommandLineError : public BaseException
+{
+public:
+       CommandLineError(const char *s):
+               BaseException(s)
+       {}
+};
+
+class ItemNotFoundException : public BaseException
+{
+public:
+       ItemNotFoundException(const char *s):
+               BaseException(s)
+       {}
+};
+
 /*
        Some "old-style" interrupts:
 */