FileDocCategorySizeDatePackage
ClassCircularityError.javaAPI DocAndroid 1.5 API1869Wed May 06 22:41:04 BST 2009java.lang

ClassCircularityError

public class ClassCircularityError extends LinkageError
Thrown when the virtual machine notices that an attempt is made to load a class which would directly or indirectly inherit from one of its subclasses.

Note that this error can only occur when inconsistent class files are loaded, since it would normally be detected at compile time.

since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ClassCircularityError()
Constructs a new {@code ClassCircularityError} that include the current stack trace.

since
Android 1.0


                        
      
        super();
    
public ClassCircularityError(String detailMessage)
Constructs a new {@code ClassCircularityError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this error.
since
Android 1.0

        super(detailMessage);
    
Methods Summary