Class NoSuchXmlAttributeException

All Implemented Interfaces:
Serializable

public class NoSuchXmlAttributeException extends NoSuchElementException
Thrown to indicate that a xml attribute does not exist.
The exception message will contain the details of the missing element.
See Also:
  • Constructor Details

    • NoSuchXmlAttributeException

      public NoSuchXmlAttributeException()
      Constructs a new no such xml attribute exception with no details.
    • NoSuchXmlAttributeException

      public NoSuchXmlAttributeException(@Nullable @Nullable String message)
      Constructs a new no such xml attribute exception with the specified message.
      Parameters:
      message - The message of the exception
    • NoSuchXmlAttributeException

      public NoSuchXmlAttributeException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Constructs a new no such xml attribute exception with the specified message and cause.
      Parameters:
      message - The message of the exception
      cause - The cause of the exception
    • NoSuchXmlAttributeException

      public NoSuchXmlAttributeException(@Nullable @Nullable Throwable cause)
      Constructs a new no such xml attribute exception with the specified cause.
      Parameters:
      cause - The cause of the exception