Skip to content
This repository has been archived by the owner on Nov 10, 2017. It is now read-only.

Commit

Permalink
close #57 in head
Browse files Browse the repository at this point in the history
  • Loading branch information
fommil committed Nov 26, 2013
1 parent 6dff122 commit aef878b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ Releases are distributed on Maven central:
<dependency>
<groupId>com.github.fommil.netlib</groupId>
<artifactId>all</artifactId>
<version>1.1.1</version>
<version>1.1.2</version>
<type>pom</type>
</dependency>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public abstract class $name$ {
try {
impl = load(className);
break;
} catch (Exception e) {
} catch (Throwable e) {
log.warning("Failed to load implementation from: " + className);
}
}
Expand All @@ -93,7 +93,7 @@ public abstract class $name$ {
INSTANCE = impl;
log.config("Implementation provided by " + INSTANCE.getClass());
$initCode$
} catch (Exception e) {
} catch (Throwable e) {
throw new ExceptionInInitializerError(e);
}
}
Expand Down

0 comments on commit aef878b

Please sign in to comment.