Class ITextException

    • Constructor Summary

      Constructors 
      Constructor Description
      ITextException()
      Creates a new ITextException with no error message and cause.
      ITextException​(java.lang.String message)
      Creates a new ITextException.
      ITextException​(java.lang.String message, java.lang.Throwable cause)
      Creates a new ITextException.
      ITextException​(java.lang.Throwable cause)
      Creates a new ITextException.
    • 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

      • ITextException

        public ITextException()
        Creates a new ITextException with no error message and cause.
      • ITextException

        public ITextException​(java.lang.String message)
        Creates a new ITextException.
        Parameters:
        message - the detail message
      • ITextException

        public ITextException​(java.lang.Throwable cause)
        Creates a new ITextException.
        Parameters:
        cause - the cause (which is saved for later retrieval by Throwable.getCause() method)
      • ITextException

        public ITextException​(java.lang.String message,
                              java.lang.Throwable cause)
        Creates a new ITextException.
        Parameters:
        message - the detail message
        cause - the cause (which is saved for later retrieval by Throwable.getCause() method)