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 Summary
Constructors Constructor Description ParseException(int lineNumber, int colNumber, String systemId)
Constructs a new instance of this class withnull
as 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 Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getMessage()
String
toString()
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
ParseException
public ParseException(int lineNumber, int colNumber, 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(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 thegetMessage()
method.lineNumber
- line numbercolNumber
- columns numbersystemId
- 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 thegetMessage()
method.lineNumber
- line numbercolNumber
- columns numbersystemId
- system idrootCause
- root failure cause
-
-