FileDocCategorySizeDatePackage
AndroidRuntimeException.javaAPI DocAndroid 5.1 API1105Thu Mar 12 22:22:10 GMT 2015android.util

AndroidRuntimeException

public class AndroidRuntimeException extends RuntimeException
Base class for all unchecked exceptions thrown by the Android frameworks.

Fields Summary
Constructors Summary
public AndroidRuntimeException()

    
public AndroidRuntimeException(String name)

        super(name);
    
public AndroidRuntimeException(String name, Throwable cause)

        super(name, cause);
    
public AndroidRuntimeException(Exception cause)

        super(cause);
    
Methods Summary