Package edu.umd.cs.findbugs
Class FatalException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.umd.cs.findbugs.FatalException
-
- All Implemented Interfaces:
java.io.Serializable
public class FatalException extends java.lang.RuntimeException
A fatal exception which should completely halt the FindBugs analysis. Use sparingly.- Author:
- David Hovemeyer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FatalException(java.lang.String msg)
Constructor.FatalException(java.lang.String msg, java.lang.Throwable cause)
Constructor.
-
-
-
Constructor Detail
-
FatalException
public FatalException(java.lang.String msg)
Constructor.- Parameters:
msg
- message describing the exception
-
FatalException
public FatalException(java.lang.String msg, java.lang.Throwable cause)
Constructor.- Parameters:
msg
- message describing the exceptioncause
- another exception which is the root cause
-
-