diff options
Diffstat (limited to 'libjava/java/security/KeyManagementException.java')
-rw-r--r-- | libjava/java/security/KeyManagementException.java | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/libjava/java/security/KeyManagementException.java b/libjava/java/security/KeyManagementException.java index ef50e32..52c2786 100644 --- a/libjava/java/security/KeyManagementException.java +++ b/libjava/java/security/KeyManagementException.java @@ -1,5 +1,5 @@ -/* KeyManagementException.java -- What it says - Copyright (C) 1998 Free Software Foundation, Inc. +/* KeyManagementException.java -- an exception in key management + Copyright (C) 1998, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,29 +38,31 @@ exception statement from your version. */ package java.security; /** - * This exception is thrown whenever a problem related to the management of - * security keys is encountered. - * - * @version 0.0 - * - * @author Aaron M. Renn (arenn@urbanophile.com) + * This exception is thrown whenever a problem related to the management of + * security keys is encountered. + * + * @author Aaron M. Renn <arenn@urbanophile.com> + * @see Key + * @status updated to 1.4 */ public class KeyManagementException extends KeyException { /** - * This method initializes a new instance of <code>KeyManagementException</code> - * with no descriptive error message. + * Compatible with JDK 1.1+. + */ + private static final long serialVersionUID = 947674216157062695L; + + /** + * Create a new instance with no descriptive error message. */ public KeyManagementException() { - super(); } /** - * This method initializes a new instance of <code>KeyManagementException</code> - * with a descriptive error message. + * Create a new instance with a descriptive error message. * - * @param msg The descriptive error message + * @param msg the descriptive error message */ public KeyManagementException(String msg) { |