Signed-off-by:Roland Häder <roland@mxchange.org>
*/
protected final void abortProgramWithException (final Throwable throwable) {
// Log exception ...
- this.getLogger().catching(throwable);
+ this.logException(throwable);
// .. and exit
System.exit(1);
isEof = (this.getStorageFile().getFilePointer() >= this.length());
} catch (final IOException ex) {
// Length cannot be determined
- this.getLogger().catching(ex);
+ this.logException(ex);
}
// Return status
// Convert to string
input = new String(decoded).trim();
} catch (final IOException ex) {
- this.getLogger().catching(ex);
+ this.logException(ex);
}
// Trace message
return manager.size();
} catch (final IOException ex) {
// Log warning
- this.getLogger().catching(ex);
+ this.logException(ex);
// Return zero
return 0;