diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-26 12:30:07 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-26 12:30:07 +0100 |
commit | 3338eede3ccb2ead223a46fd537b7504bb4786e0 (patch) | |
tree | eb1645e8cceaae4fc578b301b52ae104944303d1 /lib/private/setup/mssql.php | |
parent | a2457b5fb9f1ef9fda82afc4cf7dc712d14488c9 (diff) | |
download | nextcloud-server-3338eede3ccb2ead223a46fd537b7504bb4786e0.tar.gz nextcloud-server-3338eede3ccb2ead223a46fd537b7504bb4786e0.zip |
Correctly namespace DatabaseSetupException
Diffstat (limited to 'lib/private/setup/mssql.php')
-rw-r--r-- | lib/private/setup/mssql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/setup/mssql.php b/lib/private/setup/mssql.php index b8329f99079..5143545b76f 100644 --- a/lib/private/setup/mssql.php +++ b/lib/private/setup/mssql.php @@ -17,7 +17,7 @@ class MSSQL extends AbstractDatabase { } else { $entry = ''; } - throw new \DatabaseSetupException($this->trans->t('MS SQL username and/or password not valid: %s', array($entry)), + throw new \OC\DatabaseSetupException($this->trans->t('MS SQL username and/or password not valid: %s', array($entry)), $this->trans->t('You need to enter either an existing account or the administrator.')); } |