Class ExtractorException

  • All Implemented Interfaces:
    java.io.Serializable

    public class ExtractorException
    extends javax.ws.rs.ProcessingException
    A runtime exception that contains a cause, a checked or runtime exception, that may be passed to the cause of a WebApplicationException.
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private static long serialVersionUID  
    • Constructor Summary

      Constructors 
      Constructor Description
      ExtractorException​(java.lang.String message)
      Create new parameter extractor exception.
      ExtractorException​(java.lang.String message, java.lang.Throwable cause)
      Create new parameter extractor exception.
      ExtractorException​(java.lang.Throwable cause)
      Create new parameter extractor exception.
    • 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

      • ExtractorException

        public ExtractorException​(java.lang.String message)
        Create new parameter extractor exception.
        Parameters:
        message - exception message.
      • ExtractorException

        public ExtractorException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Create new parameter extractor exception.
        Parameters:
        message - exception message.
        cause - exception cause.
      • ExtractorException

        public ExtractorException​(java.lang.Throwable cause)
        Create new parameter extractor exception.
        Parameters:
        cause - exception cause.