Fix namespace for Exception

This commit is contained in:
Bart Visscher 2014-02-12 17:42:55 +01:00
parent 3abcd13979
commit ae525d1f12
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class ConvertType extends Command {
$this->config->setValue('dbhost', $dbhost);
$this->config->setValue('dbuser', $username);
$this->config->setValue('dbpassword', $password);
} catch(Exception $e) {
} catch(\Exception $e) {
$this->config->setValue('maintenance', false);
throw $e;
}