in activeio-core/src/main/java/org/apache/activeio/journal/howl/HowlJournal.java [128:140]
public void close() throws IOException {
try {
logger.close();
} catch (IOException e) {
throw e;
} catch (InterruptedException e) {
throw (InterruptedIOException) new InterruptedIOException()
.initCause(e);
} catch (Exception e) {
throw (IOException) new IOException("Journal close failed: " + e)
.initCause(e);
}
}