Add write support to Config backends with add/set methods

This commit is contained in:
2011-08-28 13:01:56 +01:00
parent da746cb118
commit faf8806472
4 changed files with 119 additions and 7 deletions

View File

@@ -24,6 +24,9 @@ class SihnonFramework_Exception_ResultCountMismatch extends SihnonFramework_E
class SihnonFramework_Exception_ConfigException extends SihnonFramework_Exception {};
class SihnonFramework_Exception_UnknownSetting extends SihnonFramework_Exception_ConfigException {};
class SihnonFramework_Exception_ReadOnlyConfigBackend extends SihnonFramework_Exception_ConfigException {};
class SihnonFramework_Exception_SettingExists extends SihnonFramework_Exception_ConfigException {};
class SihnonFramework_Exception_UnknownSettingType extends SihnonFramework_Exception_ConfigException {};
class SihnonFramework_Exception_CacheException extends SihnonFramework_Exception {};
class SihnonFramework_Exception_InvalidCacheDir extends SihnonFramework_Exception_CacheException {};