Add DatabaseObject base class

DatabaseObject exposes common behaviours for database table wrapper
classes.
This commit is contained in:
2011-12-19 12:00:08 +00:00
parent bc154dd1c8
commit 537583a231
3 changed files with 215 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ class SihnonFramework_Exception_DatabaseConnectFailed extends SihnonFramework_E
class SihnonFramework_Exception_NoDatabaseConnection extends SihnonFramework_Exception_DatabaseException {};
class SihnonFramework_Exception_DatabaseQueryFailed extends SihnonFramework_Exception_DatabaseException {};
class SihnonFramework_Exception_ResultCountMismatch extends SihnonFramework_Exception_DatabaseException {};
class SihnonFramework_Exception_InvalidProperty extends SihnonFramework_Exception_DatabaseException {};
class SihnonFramework_Exception_ConfigException extends SihnonFramework_Exception {};
class SihnonFramework_Exception_UnknownSetting extends SihnonFramework_Exception_ConfigException {};