Package org.glassfish.apf
Interface ErrorHandler
-
- All Known Implementing Classes:
DefaultErrorHandler
public interface ErrorHandlerBasic interfaced for annotation processing warnings and errors- Author:
- Jerome Dochez
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiderror(AnnotationProcessorException ape)Receive notification of an errorvoidfine(AnnotationProcessorException ape)Receive notication of a fine error messagevoidwarning(AnnotationProcessorException ape)Receive notification of a warning
-
-
-
Method Detail
-
fine
void fine(AnnotationProcessorException ape) throws AnnotationProcessorException
Receive notication of a fine error message- Parameters:
ape- The warning information- Throws:
any- exception to stop the annotation processingAnnotationProcessorException
-
warning
void warning(AnnotationProcessorException ape) throws AnnotationProcessorException
Receive notification of a warning- Parameters:
ape- The warning information- Throws:
any- exception to stop the annotation processingAnnotationProcessorException
-
error
void error(AnnotationProcessorException ape) throws AnnotationProcessorException
Receive notification of an error- Parameters:
ape- The error information- Throws:
amy- exception to stop the annotation processingAnnotationProcessorException
-
-