forked from blue/lmdbal
Base class documentation, doxugen tweaking, new exception for one case
This commit is contained in:
parent
ec0d2d57f0
commit
af0e48a684
11 changed files with 408 additions and 20 deletions
|
@ -76,6 +76,16 @@ private:
|
|||
std::string tableName;
|
||||
};
|
||||
|
||||
class StorageDuplicate : public Exception {
|
||||
public:
|
||||
StorageDuplicate(const std::string& dbName, const std::string& tableName);
|
||||
|
||||
std::string getMessage() const;
|
||||
private:
|
||||
std::string dbName;
|
||||
std::string tableName;
|
||||
};
|
||||
|
||||
class Exist : public Exception {
|
||||
public:
|
||||
Exist(const std::string& key, const std::string& dbName, const std::string& tableName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue