edu.umd.cs.findbugs.ba
public class AnalysisException extends RuntimeException
Constructor Summary | |
---|---|
AnalysisException(String message)
Constructor.
| |
AnalysisException(String message, Throwable throwable)
Constructor from another Throwable object.
| |
AnalysisException(String message, MethodGen methodGen, Throwable throwable)
Constructor from MethodGen and another Throwable object.
| |
AnalysisException(String message, MethodGen methodGen, InstructionHandle handle)
Constructor from method and instruction.
| |
AnalysisException(String message, MethodGen methodGen, Instruction ins)
Constructor from method and instruction.
| |
AnalysisException(String message, MethodGen methodGen, InstructionHandle handle, Throwable throwable)
Constructor from method, instruction, and causing Throwable object.
| |
AnalysisException(String message, MethodGen methodGen, Instruction ins, Throwable throwable)
Constructor from method, instruction, and causing Throwable object.
|
Parameters: message reason for the error
Parameters: message reason for the error throwable cause of the error
Parameters: message reason for the error methodGen the method throwable cause of the error
Parameters: message reason for the error methodGen the method handle the instruction
Parameters: message reason for the error methodGen the method ins the instruction
Parameters: message reason for the error methodGen the method handle the instruction throwable the cause of the error
Parameters: message reason for the error methodGen the method ins the instruction throwable the cause of the error