1
0
mirror of https://github.com/fabianonline/telegram_backup.git synced 2024-09-29 02:15:50 +00:00

Stop execution if an error happens during database upgrades.

This commit is contained in:
Fabian Schlenz 2016-07-11 06:25:19 +02:00
parent 05dea702c3
commit 7e91ec092e

View File

@ -240,7 +240,7 @@ public class Database {
} catch (SQLException e) { } catch (SQLException e) {
System.out.println(e.getSQLState()); System.out.println(e.getSQLState());
e.printStackTrace(); throw new RuntimeException(e);
} }
} }