This commit is contained in:
Arionum
2018-01-08 21:15:02 +02:00
parent ae498abbb5
commit 068d8798c8
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ class db extends PDO {
parent::__construct($dsn, $user, $passwd, $options);
} catch (PDOException $e) {
$this->error = $e->getMessage();
die("Could not connect to the DB");
die("Could not connect to the DB - ".$this->error);
}
}