OSDN Git Service

* java/security/AlgorithmParameterGeneratorSpi.java: New file.
[pf3gnuchains/gcc-fork.git] / libjava / java / security / KeyException.java
1 /* Copyright (C) 2000  Free Software Foundation
2
3    This file is part of libgcj.
4
5 This software is copyrighted work licensed under the terms of the
6 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
7 details.  */
8
9 package java.security;
10
11 /**
12  * @author Warren Levy <warrenl@cygnus.com>
13  * @date February 1, 2000.
14  */
15
16 /**
17  * Written using on-line Java Platform 1.2 API Specification.
18  * Status:  Believed complete and correct.
19  */
20
21 public class KeyException extends GeneralSecurityException
22 {
23   public KeyException()
24   {
25     super();
26   }
27
28   public KeyException(String msg)
29   {
30     super(msg);
31   }
32 }