Clients inform server on wielded item
[oweals/minetest.git] / src / exceptions.h
index 80bdbeb361c7b15252dbd2d4716493606449a1a3..40a0db4aa86110e14f96dac38e0e085a7282a270 100644 (file)
@@ -116,6 +116,30 @@ public:
        {}
 };
 
+class ProcessingLimitException : public BaseException
+{
+public:
+       ProcessingLimitException(const char *s):
+               BaseException(s)
+       {}
+};
+
+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:
 */