FileDocCategorySizeDatePackage
Error.javaAPI DocAndroid 1.5 API2422Wed May 06 22:41:04 BST 2009java.lang

Error

public class Error extends Throwable
{@code Error} is the superclass of all classes that represent unrecoverable errors. When errors are thrown, they should not be caught by application code.
see
Throwable
see
Exception
see
RuntimeException
since
Android 1.0

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

since
Android 1.0


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

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

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

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

        super(detailMessage, throwable);
    
public Error(Throwable throwable)
Constructs a new {@code Error} with the current stack trace and the specified cause.

param
throwable the cause of this error.
since
Android 1.0

        super(throwable);
    
Methods Summary