FileDocCategorySizeDatePackage
ClassFormatError.javaAPI DocAndroid 1.5 API1674Wed May 06 22:41:04 BST 2009java.lang

ClassFormatError

public class ClassFormatError extends LinkageError
Thrown by a class loader when a class file has an illegal format or if the data that it contains can not be interpreted as a class.
since
Android 1.0

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

since
Android 1.0


                        
      
        super();
    
public ClassFormatError(String detailMessage)
Constructs a new {@code ClassFormatError} 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