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