Methods Summary |
---|
public AnnotationInfo | getLocator()Return information about the annotation and annotated element
which caused the exception or null if it is not available.
return locator;
|
public java.lang.String | getMessage()Return a meaningful string explaining the exception cause
return message;
|
public boolean | isFatal()
return isFatal;
|
public void | setFatal(boolean fatal)Sets wether is exception is considered as fatal to the annotation
processing.
this.isFatal = fatal;
|
public java.lang.String | toString()
return (locator==null?message:message + "at " + locator);
|