emul/mini/src/main/java/java/lang/SecurityException.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 26 Jan 2013 08:47:05 +0100
changeset 592 5e13b1ac2886
parent 120 d739cdce3891
permissions -rw-r--r--
In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
jtulach@120
     1
/*
jtulach@120
     2
 * Copyright (c) 1995, 2003, Oracle and/or its affiliates. All rights reserved.
jtulach@120
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jtulach@120
     4
 *
jtulach@120
     5
 * This code is free software; you can redistribute it and/or modify it
jtulach@120
     6
 * under the terms of the GNU General Public License version 2 only, as
jtulach@120
     7
 * published by the Free Software Foundation.  Oracle designates this
jtulach@120
     8
 * particular file as subject to the "Classpath" exception as provided
jtulach@120
     9
 * by Oracle in the LICENSE file that accompanied this code.
jtulach@120
    10
 *
jtulach@120
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
jtulach@120
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jtulach@120
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
jtulach@120
    14
 * version 2 for more details (a copy is included in the LICENSE file that
jtulach@120
    15
 * accompanied this code).
jtulach@120
    16
 *
jtulach@120
    17
 * You should have received a copy of the GNU General Public License version
jtulach@120
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
jtulach@120
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jtulach@120
    20
 *
jtulach@120
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jtulach@120
    22
 * or visit www.oracle.com if you need additional information or have any
jtulach@120
    23
 * questions.
jtulach@120
    24
 */
jtulach@120
    25
package java.lang;
jtulach@120
    26
jtulach@120
    27
/**
jtulach@120
    28
 * Thrown by the security manager to indicate a security violation.
jtulach@120
    29
 *
jtulach@120
    30
 * @author  unascribed
jtulach@120
    31
 * @see     java.lang.SecurityManager
jtulach@120
    32
 * @since   JDK1.0
jtulach@120
    33
 */
jtulach@120
    34
public class SecurityException extends RuntimeException {
jtulach@120
    35
jtulach@120
    36
    private static final long serialVersionUID = 6878364983674394167L;
jtulach@120
    37
jtulach@120
    38
    /**
jtulach@120
    39
     * Constructs a <code>SecurityException</code> with no detail  message.
jtulach@120
    40
     */
jtulach@120
    41
    public SecurityException() {
jtulach@120
    42
        super();
jtulach@120
    43
    }
jtulach@120
    44
jtulach@120
    45
    /**
jtulach@120
    46
     * Constructs a <code>SecurityException</code> with the specified
jtulach@120
    47
     * detail message.
jtulach@120
    48
     *
jtulach@120
    49
     * @param   s   the detail message.
jtulach@120
    50
     */
jtulach@120
    51
    public SecurityException(String s) {
jtulach@120
    52
        super(s);
jtulach@120
    53
    }
jtulach@120
    54
jtulach@120
    55
    /**
jtulach@120
    56
     * Creates a <code>SecurityException</code> with the specified
jtulach@120
    57
     * detail message and cause.
jtulach@120
    58
     *
jtulach@120
    59
     * @param message the detail message (which is saved for later retrieval
jtulach@120
    60
     *        by the {@link #getMessage()} method).
jtulach@120
    61
     * @param cause the cause (which is saved for later retrieval by the
jtulach@120
    62
     *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
jtulach@120
    63
     *        and indicates that the cause is nonexistent or unknown.)
jtulach@120
    64
     * @since 1.5
jtulach@120
    65
     */
jtulach@120
    66
    public SecurityException(String message, Throwable cause) {
jtulach@120
    67
        super(message, cause);
jtulach@120
    68
    }
jtulach@120
    69
jtulach@120
    70
    /**
jtulach@120
    71
     * Creates a <code>SecurityException</code> with the specified cause
jtulach@120
    72
     * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
jtulach@120
    73
     * (which typically contains the class and detail message of
jtulach@120
    74
     * <tt>cause</tt>).
jtulach@120
    75
     *
jtulach@120
    76
     * @param cause the cause (which is saved for later retrieval by the
jtulach@120
    77
     *        {@link #getCause()} method).  (A <tt>null</tt> value is permitted,
jtulach@120
    78
     *        and indicates that the cause is nonexistent or unknown.)
jtulach@120
    79
     * @since 1.5
jtulach@120
    80
     */
jtulach@120
    81
    public SecurityException(Throwable cause) {
jtulach@120
    82
        super(cause);
jtulach@120
    83
    }
jtulach@120
    84
}