org.apache.maven.doxia.module.apt
Class AptParseException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.maven.doxia.parser.ParseException
              extended by org.apache.maven.doxia.module.apt.AptParseException
All Implemented Interfaces:
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
AptParseException(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
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AptParseException

public AptParseException(String message)
Construct a new AptParseException with the specified detail message.

Parameters:
message - The detailed message. This can later be retrieved by the Throwable.getMessage() method.

AptParseException

public AptParseException(String message,
                         Exception e)
Construct a new AptParseException with the specified detail message and cause.

Parameters:
message - The detailed message. This can later be retrieved by the Throwable.getMessage() method.
e - the cause. This can be retrieved later by the Throwable.getCause() method. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

AptParseException

public 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.

Parameters:
message - The detailed message. This can later be retrieved by the Throwable.getMessage() method.
e - the cause. This can be retrieved later by the Throwable.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(String message,
                         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 the Throwable.getMessage() method.
e - the cause. This can be retrieved later by the Throwable.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.


Copyright © 2005-2012 The Apache Software Foundation. All Rights Reserved.