diff options
author | xue <> | 2005-12-15 21:55:11 +0000 |
---|---|---|
committer | xue <> | 2005-12-15 21:55:11 +0000 |
commit | b63e188cecb5d8ccc44d310aaca09ea8270cd797 (patch) | |
tree | 4159369b2c28b8a76f9674a33954c4336e5e1962 /framework | |
parent | 638a3327ff1ec75369d683da9d9fe008a042ea35 (diff) |
Fixed a bug about exception name.
Diffstat (limited to 'framework')
-rw-r--r-- | framework/Security/TUserManager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Security/TUserManager.php b/framework/Security/TUserManager.php index 783d1c60..a6d3b8de 100644 --- a/framework/Security/TUserManager.php +++ b/framework/Security/TUserManager.php @@ -241,7 +241,7 @@ class TUserManager extends TModule $this->loadUserData($dom);
}
else
- throw new TInvalidConfigurationException('usermanager_userfile_invalid',$this->_userFile);
+ throw new TConfigurationException('usermanager_userfile_invalid',$this->_userFile);
}
$this->loadUserData($config);
$this->_initialized=true;
|