Class AptParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.maven.doxia.parser.ParseException
org.apache.maven.doxia.module.apt.AptParseException
- All Implemented Interfaces:
Serializable
Wraps an exception when parsing apt source documents.
- Since:
- 1.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final long
serialVersionUID -
Constructor Summary
ConstructorsConstructorDescriptionAptParseException
(String message) Construct a new AptParseException with the specified detail message.AptParseException
(String message, Exception e) Construct a new AptParseException with the specified detail message and cause.AptParseException
(String message, Exception e, int line, int column) Construct a new AptParseException with the specified detail message and cause.AptParseException
(String message, Exception e, String name, int line, int column) Construct a new AptParseException with the specified cause, detail message, filename, line number and column number. -
Method Summary
Methods inherited from class org.apache.maven.doxia.parser.ParseException
getColumnNumber, getFileName, getLineNumber
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
static final long serialVersionUIDserialVersionUID- See Also:
-
-
Constructor Details
-
AptParseException
Construct a new AptParseException with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by theThrowable.getMessage()
method.
-
AptParseException
Construct a new AptParseException with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by theThrowable.getMessage()
method.e
- the cause. This can be retrieved later by theThrowable.getCause()
method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
AptParseException
Construct a new AptParseException with the specified cause, detail message, filename, line number and column number.- Parameters:
message
- The detailed message. This can later be retrieved by theThrowable.getMessage()
method.e
- the cause. This can be retrieved later by theThrowable.getCause()
method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)name
- Name of a file that couldn't be parsed. This can later be retrieved by the getFileName() method.line
- The line number where the parsing failed. This can later be retrieved by the getLineNumber() method.column
- The column number where the parsing failed. This can later be retrieved by the getColumnNumber() method.
-
AptParseException
Construct a new AptParseException with the specified detail message and cause.- Parameters:
message
- The detailed message. This can later be retrieved by theThrowable.getMessage()
method.e
- the cause. This can be retrieved later by theThrowable.getCause()
method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)line
- The line number where the parsing failed. This can later be retrieved by the getLineNumber() method.column
- The column number where the parsing failed. This can later be retrieved by the getColumnNumber() method.
-