Skip to content

Commit aef878b

Browse files
committed
close fommil#57 in head
1 parent 6dff122 commit aef878b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ Releases are distributed on Maven central:
198198
<dependency>
199199
<groupId>com.github.fommil.netlib</groupId>
200200
<artifactId>all</artifactId>
201-
<version>1.1.1</version>
201+
<version>1.1.2</version>
202202
<type>pom</type>
203203
</dependency>
204204
```

generator/src/main/resources/com/github/fommil/netlib/generator/netlib-java.stg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public abstract class $name$ {
8282
try {
8383
impl = load(className);
8484
break;
85-
} catch (Exception e) {
85+
} catch (Throwable e) {
8686
log.warning("Failed to load implementation from: " + className);
8787
}
8888
}
@@ -93,7 +93,7 @@ public abstract class $name$ {
9393
INSTANCE = impl;
9494
log.config("Implementation provided by " + INSTANCE.getClass());
9595
$initCode$
96-
} catch (Exception e) {
96+
} catch (Throwable e) {
9797
throw new ExceptionInInitializerError(e);
9898
}
9999
}

0 commit comments

Comments
 (0)