diff options
Diffstat (limited to 'libjava/java/security/KeyException.java')
-rw-r--r-- | libjava/java/security/KeyException.java | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/libjava/java/security/KeyException.java b/libjava/java/security/KeyException.java index fbc7c69..3b7d388 100644 --- a/libjava/java/security/KeyException.java +++ b/libjava/java/security/KeyException.java @@ -1,5 +1,5 @@ /* KeyException.java -- Thrown when there is a problem with a key - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -40,26 +40,30 @@ package java.security; /** * This exception is thrown when there is a problem with a key. * - * @version 0.0 - * - * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Aaron M. Renn <arenn@urbanophile.com> + * @see Key + * @status updated to 1.4 */ public class KeyException extends GeneralSecurityException { /** + * Compatible with JDK 1.1+. + */ + private static final long serialVersionUID = -7483676942812432108L; + + /** * This method initializes a new instance of <code>KeyException</code> * with no descriptive message. */ public KeyException() { - super(); } /** * This method initializes a new instance of <code>KeyException</code> * with a descriptive message. * - * @param msg The descriptive message. + * @param msg the descriptive message */ public KeyException(String msg) { |