Skip to content

Commit

Permalink
[#9121] Make code Java 6 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaseder committed Jan 20, 2020
1 parent 042c746 commit eab08e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jOOQ/src/main/java/org/jooq/FilePattern.java
Expand Up @@ -296,7 +296,7 @@ private final void load0(File file, Loader loader) {
try {
loader.load(Source.of(file, encoding));
}
catch (Exception e) {
catch (RuntimeException e) {
log.error("Error while loading file: " + file);
throw e;
}
Expand Down

0 comments on commit eab08e3

Please sign in to comment.