Class TagException

    • Constructor Summary

      Constructors 
      Constructor Description
      TagException​(Tag tag)
      Wrap the argument tag so the exception can reference its information.
      TagException​(Tag tag, java.lang.String message)
      Wrap the argument tag so the exception can reference its information.
      TagException​(Tag tag, java.lang.String message, java.lang.Throwable cause)
      Wrap the argument tag so the exception can reference its information.
      TagException​(Tag tag, java.lang.Throwable cause)
      Wrap the argument tag so the exception can reference its information.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
    • Constructor Detail

      • TagException

        public TagException​(Tag tag)

        Wrap the argument tag so the exception can reference its information.

        Parameters:
        tag - the Tag that caused this exception.
      • TagException

        public TagException​(Tag tag,
                            java.lang.String message)

        Wrap the argument tag so the exception can reference its information.

        Parameters:
        tag - the Tag that caused this exception.
        message - a message describing the exception
      • TagException

        public TagException​(Tag tag,
                            java.lang.Throwable cause)

        Wrap the argument tag so the exception can reference its information.

        Parameters:
        tag - the Tag that caused this exception.
        cause - the root cause for this exception.
      • TagException

        public TagException​(Tag tag,
                            java.lang.String message,
                            java.lang.Throwable cause)

        Wrap the argument tag so the exception can reference its information.

        Parameters:
        tag - the Tag that caused this exception.
        message - a message describing the exception
        cause - the root cause for this exception.