From 14f616f59aeffd657375fca4769da7f0862efce7 Mon Sep 17 00:00:00 2001 From: rootcoma Date: Wed, 4 Dec 2013 23:32:04 -0800 Subject: [PATCH] Removing error on connect --- php/includes/Storage.php | 1 - 1 file changed, 1 deletion(-) diff --git a/php/includes/Storage.php b/php/includes/Storage.php index 58e9b22..8041590 100644 --- a/php/includes/Storage.php +++ b/php/includes/Storage.php @@ -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;