Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.SecurityException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----java.lang.SecurityException

public class SecurityException
extends RuntimeException
super class of:
RMISecurityException

Thrown by the security manager to indicate a security violation.

Since:
JDK1.0
See Also:
SecurityManager

Constructor Index

SecurityException()
Constructs a SecurityException with no detail message.
SecurityException(String)
Constructs a SecurityException with the specified detail message.

Constructors

SecurityException
 public SecurityException()
Constructs a SecurityException with no detail message.

SecurityException
 public SecurityException(String s)
Constructs a SecurityException with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)