FileDocCategorySizeDatePackage
AnnotationFormatError.javaAPI DocAndroid 1.5 API2336Wed May 06 22:41:02 BST 2009java.lang.annotation

AnnotationFormatError

public class AnnotationFormatError extends Error
Indicates that an annotation in the binary representation of a class is syntactically incorrect and the annotation parser is unable to process it. This exception is unlikely to ever occur, given that the code has been compiled by an ordinary Java compiler.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public AnnotationFormatError(String message)
Constructs an instance with the message provided.

param
message the details of the error.
since
Android 1.0


                                                  
       
        super(message);
    
public AnnotationFormatError(String message, Throwable cause)
Constructs an instance with a message and a cause.

param
message the details of the error.
param
cause the cause of the error or {@code null} if none.
since
Android 1.0

        super(message, cause);
    
public AnnotationFormatError(Throwable cause)
Constructs an instance with a cause. If the cause is not {@code null}, then {@code cause.toString()} is used as the error's message.

param
cause the cause of the error or {@code null} if none.
since
Android 1.0

        super(cause == null ? null : cause.toString(), cause);
    
Methods Summary