Class InvalidSettingException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.owasp.dependencycheck.utils.InvalidSettingException
All Implemented Interfaces:
Serializable

public class InvalidSettingException extends IOException
An exception used when an error occurs reading a setting.
Version:
$Id: $Id
Author:
Jeremy Long
See Also:
  • Constructor Details

    • InvalidSettingException

      public InvalidSettingException()
      Creates a new InvalidSettingException.
    • InvalidSettingException

      public InvalidSettingException(String msg)
      Creates a new InvalidSettingException.
      Parameters:
      msg - a message for the exception.
    • InvalidSettingException

      public InvalidSettingException(Throwable ex)
      Creates a new InvalidSettingException.
      Parameters:
      ex - the cause of the setting exception.
    • InvalidSettingException

      public InvalidSettingException(String msg, Throwable ex)
      Creates a new InvalidSettingException.
      Parameters:
      msg - a message for the exception.
      ex - the cause of the setting exception.