Class InitializationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.dependencycheck.exception.InitializationException
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class InitializationException extends java.lang.ExceptionAn exception used when initializing analyzers.- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InitializationException()Creates a new InitializationException.InitializationException(java.lang.String msg)Creates a new InitializationException.InitializationException(java.lang.String msg, java.lang.Throwable ex)Creates a new InitializationException.InitializationException(java.lang.String msg, java.lang.Throwable ex, boolean fatal)Creates a new InitializationException.InitializationException(java.lang.Throwable ex)Creates a new InitializationException.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisFatal()Get the value of fatal.voidsetFatal(boolean fatal)Set the value of fatal.
-
-
-
Constructor Detail
-
InitializationException
public InitializationException()
Creates a new InitializationException.
-
InitializationException
public InitializationException(java.lang.String msg)
Creates a new InitializationException.- Parameters:
msg- a message for the exception.
-
InitializationException
public InitializationException(java.lang.Throwable ex)
Creates a new InitializationException.- Parameters:
ex- the cause of the exception.
-
InitializationException
public InitializationException(java.lang.String msg, java.lang.Throwable ex)Creates a new InitializationException.- Parameters:
msg- a message for the exception.ex- the cause of the exception.
-
InitializationException
public InitializationException(java.lang.String msg, java.lang.Throwable ex, boolean fatal)Creates a new InitializationException.- Parameters:
msg- a message for the exception.ex- the cause of the exception.fatal- whether or not the exception is fatal.
-
-