Class XmlSyntaxException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.luis.utils.io.data.xml.exception.XmlSyntaxException
All Implemented Interfaces:
Serializable

public class XmlSyntaxException extends RuntimeException
Thrown to indicate that the syntax of a xml string is invalid.
The exception message will contain the details of the syntax error.
See Also:
  • Constructor Details

    • XmlSyntaxException

      public XmlSyntaxException()
      Constructs a new xml syntax exception with no details.
    • XmlSyntaxException

      public XmlSyntaxException(@Nullable @Nullable String message)
      Constructs a new xml syntax exception with the specified message.
      Parameters:
      message - The message of the exception
    • XmlSyntaxException

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

      public XmlSyntaxException(@Nullable @Nullable Throwable cause)
      Constructs a new xml syntax exception with the specified cause.
      Parameters:
      cause - The cause of the exception