Skip to content

Commit

Permalink
Fix SpotBugs issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Siegel committed Aug 29, 2020
1 parent 23d8c93 commit f0cadcd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ public final class TablesModelHelper {
Class.forName(TableEntity.class.getName(), true, TableEntity.class.getClassLoader());
Class.forName(TableItem.class.getName(), true, TableItem.class.getClassLoader());
} catch (ClassNotFoundException e) {
throw new ClientLogger(TablesModelHelper.class).logThrowableAsError(new AssertionError(e));
AssertionError err = new AssertionError("Failed to initialize TablesModelHelper dependency classes.", e);
new ClientLogger(TablesModelHelper.class).logThrowableAsError(err);
throw err;
}
}

Expand Down

0 comments on commit f0cadcd

Please sign in to comment.