mirror of
https://github.com/luanti-org/luanti.git
synced 2025-11-30 04:35:20 +01:00
Implement DatabaseException for databases
This commit is contained in:
@@ -65,6 +65,11 @@ public:
|
||||
FileNotGoodException(const std::string &s): BaseException(s) {}
|
||||
};
|
||||
|
||||
class DatabaseException : public BaseException {
|
||||
public:
|
||||
DatabaseException(const std::string &s): BaseException(s) {}
|
||||
};
|
||||
|
||||
class SerializationError : public BaseException {
|
||||
public:
|
||||
SerializationError(const std::string &s): BaseException(s) {}
|
||||
|
||||
Reference in New Issue
Block a user