Class ParseException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.jackrabbit.commons.cnd.ParseException
All Implemented Interfaces:
Serializable

public class ParseException extends Exception
ParseException
See Also:
  • Constructor Details

    • ParseException

      public ParseException(int lineNumber, int colNumber, String systemId)
      Constructs a new instance of this class with null as its detail message.
      Parameters:
      lineNumber - line number
      colNumber - columns number
      systemId - system id
    • ParseException

      public ParseException(String message, int lineNumber, int colNumber, String systemId)
      Constructs a new instance of this class with the specified detail message.
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the getMessage() method.
      lineNumber - line number
      colNumber - columns number
      systemId - system id
    • ParseException

      public ParseException(String message, Throwable rootCause, int lineNumber, int colNumber, String systemId)
      Constructs a new instance of this class with the specified detail message and root cause.
      Parameters:
      message - the detail message. The detail message is saved for later retrieval by the getMessage() method.
      rootCause - root failure cause
      lineNumber - line number
      colNumber - columns number
      systemId - system id
    • ParseException

      public ParseException(Throwable rootCause, int lineNumber, int colNumber, String systemId)
      Constructs a new instance of this class with the specified root cause.
      Parameters:
      rootCause - root failure cause
      lineNumber - line number
      colNumber - columns number
      systemId - system id
  • Method Details