java.lang
Class SecurityException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--java.lang.RuntimeException
|
+--java.lang.SecurityException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- AccessControlException
- public class SecurityException
- extends RuntimeException
Untamed: Thrown by the security manager to indicate a security violation.
- Since:
- JDK1.0
- Version:
- 1.12, 12/03/01
- Author:
- unascribed
- See Also:
java.lang.SecurityManager
,
Serialized Form
Fields inherited from class java.lang.Throwable |
|
Constructor Summary |
SecurityException()
Enabled: Constructs a SecurityException with no detail message. |
SecurityException(String s)
Enabled: Constructs a SecurityException with the specified
detail message. |
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
SecurityException
public SecurityException()
- Enabled: Constructs a
SecurityException
with no detail message.
SecurityException
public SecurityException(String s)
- Enabled: Constructs a
SecurityException
with the specified
detail message.
- Parameters:
s
- the detail message.
comments?