FileDocCategorySizeDatePackage
StaleDexCacheError.javaAPI DocAndroid 1.5 API1232Wed May 06 22:41:02 BST 2009dalvik.system

StaleDexCacheError

public class StaleDexCacheError extends VirtualMachineError
Is thrown when the VM determines that a DEX file's cache is out of date, and that there is no way to recreate it.

Fields Summary
Constructors Summary
public StaleDexCacheError()
Creates a new exception instance and initializes it with default values.

        super();
    
public StaleDexCacheError(String detailMessage)
Creates a new exception instance and initializes it with a given message.

param
detailMessage the error message

        super(detailMessage);
    
Methods Summary