Package org.owasp.dependencycheck.utils
Class ExtractionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.owasp.dependencycheck.utils.ExtractionException
-
- All Implemented Interfaces:
java.io.Serializable
public class ExtractionException extends java.io.IOException
An exception used when a file is unable to be un-zipped.- Version:
- $Id: $Id
- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExtractionException()
Creates a new ExtractionException.ExtractionException(java.lang.String msg)
Creates a new ExtractionException.ExtractionException(java.lang.String msg, java.lang.Throwable ex)
Creates a new ExtractionException.ExtractionException(java.lang.Throwable ex)
Creates a new ExtractionException.
-
-
-
Constructor Detail
-
ExtractionException
public ExtractionException()
Creates a new ExtractionException.
-
ExtractionException
public ExtractionException(java.lang.String msg)
Creates a new ExtractionException.- Parameters:
msg
- a message for the exception.
-
ExtractionException
public ExtractionException(java.lang.Throwable ex)
Creates a new ExtractionException.- Parameters:
ex
- the cause of the download failure.
-
ExtractionException
public ExtractionException(java.lang.String msg, java.lang.Throwable ex)
Creates a new ExtractionException.- Parameters:
msg
- a message for the exception.ex
- the cause of the download failure.
-
-