Removing error on connect

This commit is contained in:
rootcoma 2013-12-04 23:32:04 -08:00
parent d968ab7c67
commit 14f616f59a
1 changed files with 0 additions and 1 deletions

View File

@ -17,7 +17,6 @@ class Storage
$this->db = new PDO($this->dbType . $this->dbLocation);
if(!$this->db) {
$this->db = null;
throw new StorageConnectionException();
}
} catch(Exception $e) {
$this->db = null;