/[classpath]/classpath/java/security/NoSuchAlgorithmException.java
ViewVC logotype

Diff of /classpath/java/security/NoSuchAlgorithmException.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.4 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.5 by ericb, Sun Feb 24 04:25:17 2002 UTC
# Line 1  Line 1 
1  /* NoSuchAlgorithmException.java -- What it says  /* NoSuchAlgorithmException.java -- an algorithm was not available
2     Copyright (C) 1998 Free Software Foundation, Inc.     Copyright (C) 1998, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 41  package java.security; Line 41  package java.security;
41   * This exception is thrown when the requested security algorithm is   * This exception is thrown when the requested security algorithm is
42   * not available   * not available
43   *   *
44   * @version 0.0   * @author Aaron M. Renn <arenn@urbanophile.com>
45   *   * @status updated to 1.4
  * @author Aaron M. Renn (arenn@urbanophile.com)  
46   */   */
47  public class NoSuchAlgorithmException extends GeneralSecurityException  public class NoSuchAlgorithmException extends GeneralSecurityException
48  {  {
49    /**    /**
50     * This method initializes a new instance of <code>NoSuchAlgorithmException</code>     * Compatible with JDK 1.1+.
51     * with no descriptive error message.     */
52      private static final long serialVersionUID = -7443947487218346562L;
53    
54      /**
55       * Create a new instance with no descriptive error message.
56     */     */
57    public NoSuchAlgorithmException()    public NoSuchAlgorithmException()
58    {    {
     super();  
59    }    }
60    
61    /**    /**
62     * This method initializes a new instance of <code>NoSuchAlgorithmException</code>     * Create a new instance with a descriptive error message.
    * with a descriptive error message.  
63     *     *
64     * @param msg The descriptive error message     * @param msg the descriptive error message
65     */     */
66    public NoSuchAlgorithmException(String msg)    public NoSuchAlgorithmException(String msg)
67    {    {

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26