diff options
Diffstat (limited to 'libjava/java/security/NoSuchProviderException.java')
-rw-r--r-- | libjava/java/security/NoSuchProviderException.java | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/libjava/java/security/NoSuchProviderException.java b/libjava/java/security/NoSuchProviderException.java index 130cf64..546b2dc 100644 --- a/libjava/java/security/NoSuchProviderException.java +++ b/libjava/java/security/NoSuchProviderException.java @@ -1,5 +1,5 @@ -/* NoSuchProviderException.java -- What it says - Copyright (C) 1998 Free Software Foundation, Inc. +/* NoSuchProviderException.java -- thrown when a provider is not found + Copyright (C) 1998, 2002 Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -41,26 +41,27 @@ package java.security; * This exception is thrown when the requested security provider is * not available. * - * @version 0.0 - * - * @author Aaron M. Renn (arenn@urbanophile.com) + * @author Aaron M. Renn <arenn@urbanophile.com> + * @status updated to 1.4 */ public class NoSuchProviderException extends GeneralSecurityException { /** - * This method initializes a new instance of <code>NoSuchProviderException</code> - * with no descriptive error message. + * Compatible with JDK 1.1+. + */ + private static final long serialVersionUID = 8488111756688534474L; + + /** + * Create a new instance with no descriptive error message. */ public NoSuchProviderException() { - super(); } /** - * This method initializes a new instance of <code>NoSuchProviderException</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 NoSuchProviderException(String msg) { |