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

Diff of /classpath/java/security/KeyManagementException.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  /* KeyManagementException.java -- What it says  /* KeyManagementException.java -- an exception in key management
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 38  exception statement from your version. * Line 38  exception statement from your version. *
38  package java.security;  package java.security;
39    
40  /**  /**
41     * This exception is thrown whenever a problem related to the management of   * This exception is thrown whenever a problem related to the management of
42     * security keys is encountered.   * security keys is encountered.
43     *   *
44     * @version 0.0   * @author Aaron M. Renn <arenn@urbanophile.com>
45     *   * @see Key
46     * @author Aaron M. Renn (arenn@urbanophile.com)   * @status updated to 1.4
47   */   */
48  public class KeyManagementException extends KeyException  public class KeyManagementException extends KeyException
49  {  {
50    /**    /**
51     * This method initializes a new instance of <code>KeyManagementException</code>     * Compatible with JDK 1.1+.
52     * with no descriptive error message.     */
53      private static final long serialVersionUID = 947674216157062695L;
54    
55      /**
56       * Create a new instance with no descriptive error message.
57     */     */
58    public KeyManagementException()    public KeyManagementException()
59    {    {
     super();  
60    }    }
61    
62    /**    /**
63     * This method initializes a new instance of <code>KeyManagementException</code>     * Create a new instance with a descriptive error message.
    * with a descriptive error message.  
64     *     *
65     * @param msg The descriptive error message     * @param msg the descriptive error message
66     */     */
67    public KeyManagementException(String msg)    public KeyManagementException(String msg)
68    {    {

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