1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Implement DatabaseException for databases

This commit is contained in:
nerzhul 2016-05-17 09:59:02 +02:00
parent 8b940c005f
commit 8ba6d9f227
4 changed files with 17 additions and 12 deletions

View file

@ -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) {}