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:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ParseException(int lineNumber, int colNumber, String systemId)Constructs a new instance of this class withnullas its detail message.ParseException(String message, int lineNumber, int colNumber, String systemId)Constructs a new instance of this class with the specified detail message.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.ParseException(Throwable rootCause, int lineNumber, int colNumber, String systemId)Constructs a new instance of this class with the specified root cause.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetMessage()StringtoString()- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
ParseExceptionpublic ParseException(int lineNumber, int colNumber, String systemId)Constructs a new instance of this class withnullas its detail message.- Parameters:
- lineNumber- line number
- colNumber- columns number
- systemId- system id
 
 - 
ParseExceptionpublic 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
 
 - 
ParseExceptionpublic 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.
- lineNumber- line number
- colNumber- columns number
- systemId- system id
- rootCause- root failure cause
 
 
- 
 
-