FileDocCategorySizeDatePackage
VirtualMachineError.javaAPI DocAndroid 1.5 API1700Wed May 06 22:41:04 BST 2009java.lang

VirtualMachineError

public abstract class VirtualMachineError extends Error
{@code VirtualMachineError} is the superclass of all error classes that occur during the operation of the virtual machine.
see
Error
since
Android 1.0

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

since
Android 1.0


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

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

        super(detailMessage);
    
Methods Summary