FileDocCategorySizeDatePackage
Exception.javaAPI DocAndroid 1.5 API2473Wed May 06 22:41:04 BST 2009java.lang

Exception

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

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

since
Android 1.0


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

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

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

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

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

param
throwable the cause of this exception.
since
Android 1.0

        super(throwable);
    
Methods Summary