01: /*
02: * Copyright 1995-2003 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * by Sun in the LICENSE file that accompanied this code.
10: *
11: * This code is distributed in the hope that it will be useful, but WITHOUT
12: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14: * version 2 for more details (a copy is included in the LICENSE file that
15: * accompanied this code).
16: *
17: * You should have received a copy of the GNU General Public License version
18: * 2 along with this work; if not, write to the Free Software Foundation,
19: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20: *
21: * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22: * CA 95054 USA or visit www.sun.com if you need additional information or
23: * have any questions.
24: */
25: package java.lang;
26:
27: /**
28: * Thrown by the security manager to indicate a security violation.
29: *
30: * @author unascribed
31: * @version 1.23, 05/05/07
32: * @see java.lang.SecurityManager
33: * @since JDK1.0
34: */
35: public class SecurityException extends RuntimeException {
36:
37: private static final long serialVersionUID = 6878364983674394167L;
38:
39: /**
40: * Constructs a <code>SecurityException</code> with no detail message.
41: */
42: public SecurityException() {
43: super ();
44: }
45:
46: /**
47: * Constructs a <code>SecurityException</code> with the specified
48: * detail message.
49: *
50: * @param s the detail message.
51: */
52: public SecurityException(String s) {
53: super (s);
54: }
55:
56: /**
57: * Creates a <code>SecurityException</code> with the specified
58: * detail message and cause.
59: *
60: * @param message the detail message (which is saved for later retrieval
61: * by the {@link #getMessage()} method).
62: * @param cause the cause (which is saved for later retrieval by the
63: * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
64: * and indicates that the cause is nonexistent or unknown.)
65: * @since 1.5
66: */
67: public SecurityException(String message, Throwable cause) {
68: super (message, cause);
69: }
70:
71: /**
72: * Creates a <code>SecurityException</code> with the specified cause
73: * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
74: * (which typically contains the class and detail message of
75: * <tt>cause</tt>).
76: *
77: * @param cause the cause (which is saved for later retrieval by the
78: * {@link #getCause()} method). (A <tt>null</tt> value is permitted,
79: * and indicates that the cause is nonexistent or unknown.)
80: * @since 1.5
81: */
82: public SecurityException(Throwable cause) {
83: super(cause);
84: }
85: }
|