summaryrefslogtreecommitdiffstats
path: root/core/command
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2014-02-12 17:42:55 +0100
committerBart Visscher <bartv@thisnet.nl>2014-02-12 17:42:55 +0100
commitae525d1f125483dc14858938c5056f18d63f831e (patch)
tree0f1a563a1076e73a395d77943cea5f256ec5bf87 /core/command
parent3abcd13979660309f9a6d672d3dc64a7c6d784ab (diff)
downloadnextcloud-server-ae525d1f125483dc14858938c5056f18d63f831e.tar.gz
nextcloud-server-ae525d1f125483dc14858938c5056f18d63f831e.zip
Fix namespace for Exception
Diffstat (limited to 'core/command')
-rw-r--r--core/command/db/converttype.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index 38527d3d55a..5f59a6be828 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -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;
}