Improved DB error handling to better react to future DB schema revisions

This commit is contained in:
ghidra1 2019-11-26 12:30:39 -05:00
parent 4fc507f711
commit ea5b523f82
19 changed files with 191 additions and 330 deletions

View file

@ -807,7 +807,7 @@ public class DBHandle {
* Load existing tables from database.
* @throws IOException thrown if IO error occurs.
*/
private void loadTables() {
private void loadTables() throws IOException {
tables = new Hashtable<>();
TableRecord[] tableRecords = masterTable.getTableRecords();