Translated using Weblate (Japanese)
[oweals/minetest.git] / src / exceptions.h
index 5b716c2ca862691fdf195b946e43fded2dddf62e..6bf832828a58bdc301f96f1197851a8021f91694 100644 (file)
@@ -70,6 +70,11 @@ public:
        SerializationError(const std::string &s): BaseException(s) {}
 };
 
+class PacketError : public BaseException {
+public:
+       PacketError(const std::string &s): BaseException(s) {}
+};
+
 class LoadError : public BaseException {
 public:
        LoadError(const std::string &s): BaseException(s) {}
@@ -115,6 +120,11 @@ public:
        ClientStateError(std::string s): BaseException(s) {}
 };
 
+class PrngException : public BaseException {
+public:
+       PrngException(std::string s): BaseException(s) {}
+};
+
 /*
        Some "old-style" interrupts:
 */