* Makefile.in (dbxout.o): Depend on ggc.h.
[official-gcc.git] / libjava / java / lang / SecurityException.java
blob8a6a94f7f7556439b08752c0c2a37b11e0eb49e8
1 /* Copyright (C) 1998, 1999 Cygnus Solutions
3 This file is part of libgcj.
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
7 details. */
9 package java.lang;
11 /**
12 * @author Warren Levy <warrenl@cygnus.com>
13 * @date September 18, 1998. */
14 /* Written using "Java Class Libraries", 2nd edition, ISBN 0-201-31002-3
15 * "The Java Language Specification", ISBN 0-201-63451-1
16 * plus online API docs for JDK 1.2 beta from http://www.javasoft.com.
17 * Status: Believed complete and correct.
20 public class SecurityException extends RuntimeException
22 public SecurityException()
24 super();
27 public SecurityException(String msg)
29 super(msg);