Class TagException

All Implemented Interfaces:
Serializable

public final class TagException
extends FaceletException

An Exception caused by a Tag

Since:
2.0
See Also:
Serialized Form
  • Constructor Details

    • 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, 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, 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, String message, 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.