Class ArchiveExtractionException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public class ArchiveExtractionException
    extends java.lang.Exception
    An exception thrown when files in an archive cannot be extracted.
    Author:
    Jeremy Long
    See Also:
    Serialized Form
    • 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

      • ArchiveExtractionException

        public ArchiveExtractionException()
        Creates a new ArchiveExtractionException.
      • ArchiveExtractionException

        public ArchiveExtractionException​(java.lang.String msg)
        Creates a new ArchiveExtractionException.
        Parameters:
        msg - a message for the exception.
      • ArchiveExtractionException

        public ArchiveExtractionException​(java.lang.Throwable ex)
        Creates a new ArchiveExtractionException.
        Parameters:
        ex - the cause of the failure.
      • ArchiveExtractionException

        public ArchiveExtractionException​(java.lang.String msg,
                                          java.lang.Throwable ex)
        Creates a new ArchiveExtractionException.
        Parameters:
        msg - a message for the exception.
        ex - the cause of the failure.