Class 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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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.