Class CorruptedDatastreamException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.owasp.dependencycheck.data.update.exception.CorruptedDatastreamException
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class CorruptedDatastreamException extends java.lang.ExceptionAn exception used when data corruption is detected on an NVD CVE Datastream file.- Author:
- Hans Aikema
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CorruptedDatastreamException()Create a new CorruptedDatastreamException.CorruptedDatastreamException(java.lang.String message)Create a new CorruptedDatastreamException with the specified detail message.CorruptedDatastreamException(java.lang.String message, java.lang.Throwable cause)Create a new CorruptedDatastreamException with the specified detail message and cause.CorruptedDatastreamException(java.lang.Throwable cause)Create a new CorruptedDatastreamException with the specified cause.
-
-
-
Constructor Detail
-
CorruptedDatastreamException
public CorruptedDatastreamException()
Create a new CorruptedDatastreamException.
-
CorruptedDatastreamException
public CorruptedDatastreamException(java.lang.String message)
Create a new CorruptedDatastreamException with the specified detail message.- Parameters:
message- a message for the exception.
-
CorruptedDatastreamException
public CorruptedDatastreamException(java.lang.Throwable cause)
Create a new CorruptedDatastreamException with the specified cause.- Parameters:
cause- the cause for the exception.
-
CorruptedDatastreamException
public CorruptedDatastreamException(java.lang.String message, java.lang.Throwable cause)Create a new CorruptedDatastreamException with the specified detail message and cause.- Parameters:
message- a message for the exception.cause- the cause for the exception.
-
-