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:
java.io.Serializable
public class AptParseException extends ParseException
Wraps an exception when parsing apt source documents.- Since:
- 1.0
- Version:
- $Id: AptParseException.java 638290 2008-03-18 09:45:22Z bentmann $
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AptParseException(java.lang.String message)
Construct a new AptParseException with the specified detail message.AptParseException(java.lang.String message, java.lang.Exception e)
Construct a new AptParseException with the specified detail message and cause.AptParseException(java.lang.String message, java.lang.Exception e, int line, int column)
Construct a new AptParseException with the specified detail message and cause.AptParseException(java.lang.String message, java.lang.Exception e, java.lang.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
-
-
-
-
Constructor Detail
-
AptParseException
public AptParseException(java.lang.String message)
Construct a new AptParseException with the specified detail message.- Parameters:
message
- The detailed message. This can later be retrieved by theThrowable.getMessage()
method.
-
AptParseException
public AptParseException(java.lang.String message, java.lang.Exception e)
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
public AptParseException(java.lang.String message, java.lang.Exception e, java.lang.String name, int line, int column)
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
public AptParseException(java.lang.String message, java.lang.Exception e, int line, int column)
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.
-
-