1 /*
   2  * Copyright (c) 1995, 2003, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle 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 Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package java.lang;
  26 
  27 /**
  28  * Thrown by the security manager to indicate a security violation.
  29  *
  30  * @author  unascribed
  31  * @see     java.lang.SecurityManager
  32  * @since   1.0
  33  */
  34 public class SecurityException extends RuntimeException {
  35 
  36     @java.io.Serial
  37     private static final long serialVersionUID = 6878364983674394167L;
  38 
  39     /**
  40      * Constructs a {@code SecurityException} with no detail message.
  41      */
  42     public SecurityException() {
  43         super();
  44     }
  45 
  46     /**
  47      * Constructs a {@code SecurityException} 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} 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 {@code null} 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} with the specified cause
  73      * and a detail message of {@code (cause==null ? null : cause.toString())}
  74      * (which typically contains the class and detail message of
  75      * {@code cause}).
  76      *
  77      * @param cause the cause (which is saved for later retrieval by the
  78      *        {@link #getCause()} method).  (A {@code null} 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 }