View by Classes

Findings - Overview

warning Method throws alternative exception from catch block without history (Findbugs)

Further info on the wiki.

This method catches an exception, and throws a different exception, without incorporating the original exception. Doing so hides the original source of the exception making debugging and fixing these problems difficult. It is better to use the constructor of this new exception that takes an original exception so that this detail can be passed along to the user.

3org.jcoderz.commons.connector.file.FsConnectionImpl
Method org.jcoderz.commons.connector.file.FsConnectionImpl.getFileInputStream(String) throws alternative exception from catch block without history [726],
Method org.jcoderz.commons.connector.file.FsConnectionImpl.getRandomAccessFile(String, String) throws alternative exception from catch block without history [698],
Method org.jcoderz.commons.connector.file.FsConnectionImpl.isFileExists(File) throws alternative exception from catch block without history [957]
1org.jcoderz.commons.tracing.TracingProxy
Method org.jcoderz.commons.tracing.TracingProxy.invokeMethod(Method, Object[], Tracer$TracingToken) throws alternative exception from catch block without history [243]
1org.jcoderz.commons.util.LoggingProxy
Method org.jcoderz.commons.util.LoggingProxy.invokeMethod(Method, Object[], boolean) throws alternative exception from catch block without history [191]