Android
java.lang.annotation
public class

java.lang.annotation.AnnotationFormatError

java.lang.Object
java.lang.Throwable Serializable
java.lang.Error
java.lang.annotation.AnnotationFormatError

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.

Summary

Public Constructors

            AnnotationFormatError(String message)
Constructs an instance with the message provided.
            AnnotationFormatError(String message, Throwable cause)
Constructs an instance with a message and a cause.
            AnnotationFormatError(Throwable cause)
Constructs an instance with a cause.
Methods inherited from class java.lang.Throwable
Methods inherited from class java.lang.Object

Details

Public Constructors

public AnnotationFormatError(String message)

Constructs an instance with the message provided.

Parameters

message the details of the error.

public AnnotationFormatError(String message, Throwable cause)

Constructs an instance with a message and a cause.

Parameters

message the details of the error.
cause the cause of the error or null if none.

public AnnotationFormatError(Throwable cause)

Constructs an instance with a cause. If the cause is not null, then cause.toString() is used as the error's message.

Parameters

cause the cause of the error or null if none.
Copyright 2007 Google Inc. Build 0.9_r1-98467 - 14 Aug 2008 18:56