Browse Source

Add exception for SQLite databases that can't be found.

Taylor Otwell 13 years ago
parent
commit
fcdcc656b4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      system/db/connector.php

+ 4 - 0
system/db/connector.php

@@ -41,6 +41,10 @@ class Connector {
 			{
 				return new \PDO('sqlite:'.$config->database, null, null, static::$options);
 			}
+			else
+			{
+				throw new \Exception("SQLite database [".$config->database."] could not be found.");
+			}
 		}
 		// -----------------------------------------------------
 		// Connect to MySQL or Postgres.