FileDocCategorySizeDatePackage
InternalError.javaAPI DocAndroid 1.5 API1618Wed May 06 22:41:04 BST 2009java.lang

InternalError

public class InternalError extends VirtualMachineError
Thrown when the virtual machine notices that it has gotten into an undefined state.
since
Android 1.0

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

since
Android 1.0


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