File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
generator/src/main/resources/com/github/fommil/netlib/generator Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ Releases are distributed on Maven central:
198
198
<dependency >
199
199
<groupId >com.github.fommil.netlib</groupId >
200
200
<artifactId >all</artifactId >
201
- <version >1.1.1 </version >
201
+ <version >1.1.2 </version >
202
202
<type >pom</type >
203
203
</dependency >
204
204
```
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public abstract class $name$ {
82
82
try {
83
83
impl = load(className);
84
84
break;
85
- } catch (Exception e) {
85
+ } catch (Throwable e) {
86
86
log.warning("Failed to load implementation from: " + className);
87
87
}
88
88
}
@@ -93,7 +93,7 @@ public abstract class $name$ {
93
93
INSTANCE = impl;
94
94
log.config("Implementation provided by " + INSTANCE.getClass());
95
95
$initCode$
96
- } catch (Exception e) {
96
+ } catch (Throwable e) {
97
97
throw new ExceptionInInitializerError(e);
98
98
}
99
99
}
You can’t perform that action at this time.
0 commit comments