FileDocCategorySizeDatePackage
SecurityException.javaAPI DocAndroid 1.5 API2460Wed May 06 22:41:04 BST 2009java.lang

SecurityException

public class SecurityException extends RuntimeException
Thrown when a security manager check fails.
since
Android 1.0

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

since
Android 1.0


                        
      
        super();
    
public SecurityException(String detailMessage)
Constructs a new {@code SecurityException} 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 SecurityException(String message, Throwable cause)
Constructs a new {@code SecurityException} with the current stack trace, the specified detail message and the specified cause.

param
message the detail message for this exception.
param
cause the optional cause of this exception, may be {@code null}.
since
Android 1.0

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

param
cause the optional cause of this exception, may be {@code null}.
since
Android 1.0

        super((cause == null ? null : cause.toString()), cause);
    
Methods Summary