diff options
Diffstat (limited to 'lib/private/db/adaptersqlite.php')
-rw-r--r-- | lib/private/db/adaptersqlite.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/db/adaptersqlite.php b/lib/private/db/adaptersqlite.php index 3471fcf4042..fa0e7eb6237 100644 --- a/lib/private/db/adaptersqlite.php +++ b/lib/private/db/adaptersqlite.php @@ -42,7 +42,7 @@ class AdapterSqlite extends Adapter { $entry .= 'Offending command was: ' . $query . '<br />'; \OC_Log::write('core', $entry, \OC_Log::FATAL); error_log('DB error: '.$entry); - \OC_Template::printErrorPage( $entry ); + throw new \OC\HintException($entry); } if ($stmt->fetchColumn() === '0') { @@ -61,7 +61,7 @@ class AdapterSqlite extends Adapter { $entry .= 'Offending command was: ' . $query.'<br />'; \OC_Log::write('core', $entry, \OC_Log::FATAL); error_log('DB error: ' . $entry); - \OC_Template::printErrorPage( $entry ); + throw new \OC\HintException($entry); } return $result; |