Class AnnotationProcessorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
ru.objectsfill.annotation_processor.exceptions.AnnotationProcessorException
- All Implemented Interfaces:
Serializable
Exception class for Annotation Processor errors.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an AnnotationProcessorException with a default message.AnnotationProcessorException(String message, Throwable cause) Constructs an AnnotationProcessorException with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AnnotationProcessorException
public AnnotationProcessorException()Constructs an AnnotationProcessorException with a default message. -
AnnotationProcessorException
Constructs an AnnotationProcessorException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause
-