Class ParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.jackrabbit.commons.cnd.ParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class ParseException extends java.lang.Exception
ParseException- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ParseException(int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class withnull
as its detail message.ParseException(java.lang.String message, int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class with the specified detail message.ParseException(java.lang.String message, java.lang.Throwable rootCause, int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class with the specified detail message and root cause.ParseException(java.lang.Throwable rootCause, int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class with the specified root cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
java.lang.String
toString()
-
-
-
Constructor Detail
-
ParseException
public ParseException(int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class withnull
as its detail message.- Parameters:
lineNumber
- line numbercolNumber
- columns numbersystemId
- system id
-
ParseException
public ParseException(java.lang.String message, int lineNumber, int colNumber, java.lang.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 thegetMessage()
method.lineNumber
- line numbercolNumber
- columns numbersystemId
- system id
-
ParseException
public ParseException(java.lang.String message, java.lang.Throwable rootCause, int lineNumber, int colNumber, java.lang.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 thegetMessage()
method.lineNumber
- line numbercolNumber
- columns numbersystemId
- system idrootCause
- root failure cause
-
ParseException
public ParseException(java.lang.Throwable rootCause, int lineNumber, int colNumber, java.lang.String systemId)
Constructs a new instance of this class with the specified root cause.- Parameters:
lineNumber
- line numbercolNumber
- columns numbersystemId
- system idrootCause
- root failure cause
-
-