diff options
author | xue <> | 2005-12-16 15:28:29 +0000 |
---|---|---|
committer | xue <> | 2005-12-16 15:28:29 +0000 |
commit | b9b2f490cf1f5a4878d11f97c0bfbd2d13fdf929 (patch) | |
tree | 2e0c0102610c7cb6f6d5320619316cba87697ee0 /framework/Data/TMemCache.php | |
parent | 16a21c1b65deebae478ef7b8dbea8db689f456c1 (diff) |
Fixed the name of TConfigurationException.
Diffstat (limited to 'framework/Data/TMemCache.php')
-rw-r--r-- | framework/Data/TMemCache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Data/TMemCache.php b/framework/Data/TMemCache.php index d50c5b9d..e4e9ffa3 100644 --- a/framework/Data/TMemCache.php +++ b/framework/Data/TMemCache.php @@ -113,7 +113,7 @@ class TMemCache extends TModule implements ICache throw new TConfigurationException('memcache_extension_required');
$this->_cache=new Memcache;
if($this->_cache->connect($this->_host,$this->_port)===false)
- throw new TInvalidConfigurationException('memcache_connection_failed',$this->_host,$this->_port);
+ throw new TConfigurationException('memcache_connection_failed',$this->_host,$this->_port);
if($application instanceof TApplication)
$this->_prefix=$application->getUniqueID();
$this->_initialized=true;
|