Remove unnecessary exit(1) statement.

This commit is contained in:
Erik Thuning 2018-07-11 15:20:29 +02:00
parent 60f04041c2
commit 1aa8b192c4

@ -15,7 +15,6 @@ function prepare($statement) {
$error .= '\n';
$error .= $db->error.' ('.$db->errno.')';
throw new Exception($error);
exit(1);
}
return $s;