diff options
Diffstat (limited to 'cpp/src/IceDB/IceDB.cpp')
-rw-r--r-- | cpp/src/IceDB/IceDB.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cpp/src/IceDB/IceDB.cpp b/cpp/src/IceDB/IceDB.cpp index 015699cacf6..ff012579483 100644 --- a/cpp/src/IceDB/IceDB.cpp +++ b/cpp/src/IceDB/IceDB.cpp @@ -16,18 +16,34 @@ using namespace IceDB; using namespace std; + +IceDB::DatabaseException::DatabaseException(const char* file, int line) : + IceUtil::Exception(file, line) +{ +} + string DatabaseException::ice_name() const { return "IceDB::DatabaseException"; } +DeadlockException::DeadlockException(const char* file, int line) : + DatabaseException(file, line) +{ +} + string DeadlockException::ice_name() const { return "IceDB::DeadlockException"; } +NotFoundException::NotFoundException(const char* file, int line) : +DatabaseException(file, line) +{ +} + string NotFoundException::ice_name() const { |