Package org.owasp.dependencycheck.utils
Class InvalidSettingException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.owasp.dependencycheck.utils.InvalidSettingException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidSettingException extends java.io.IOException
An exception used when an error occurs reading a setting.- Version:
- $Id: $Id
- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidSettingException()
Creates a new InvalidSettingException.InvalidSettingException(java.lang.String msg)
Creates a new InvalidSettingException.InvalidSettingException(java.lang.String msg, java.lang.Throwable ex)
Creates a new InvalidSettingException.InvalidSettingException(java.lang.Throwable ex)
Creates a new InvalidSettingException.
-
-
-
Constructor Detail
-
InvalidSettingException
public InvalidSettingException()
Creates a new InvalidSettingException.
-
InvalidSettingException
public InvalidSettingException(java.lang.String msg)
Creates a new InvalidSettingException.- Parameters:
msg
- a message for the exception.
-
InvalidSettingException
public InvalidSettingException(java.lang.Throwable ex)
Creates a new InvalidSettingException.- Parameters:
ex
- the cause of the setting exception.
-
InvalidSettingException
public InvalidSettingException(java.lang.String msg, java.lang.Throwable ex)
Creates a new InvalidSettingException.- Parameters:
msg
- a message for the exception.ex
- the cause of the setting exception.
-
-