Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/security/KeyStoreException.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    11/* KeyStoreException.java -- Indicates a problem with the key store
    2    Copyright (C) 1998 Free Software Foundation, Inc.
     2   Copyright (C) 1998 Free Software Foundation, Inc.
    33
    44This file is part of GNU Classpath.
     
    4141 * Indicates a problem with the key store.
    4242 *
    43  * @version 0.0
    44  *
    45  * @author Aaron M. Renn ([email protected])
     43 * @
     44 *
     45 * @
    4646 */
    4747public class KeyStoreException extends GeneralSecurityException
    4848{
    4949  /**
    50    * This method initializes a new <code>KeyStoreException</code> with no
    51    * detailed error message.
     50   * Compatible with JDK 1.2+.
     51   */
     52  private static final long serialVersionUID = -1119353179322377262L;
     53
     54  /**
     55   * Create a new instance detailed error message.
    5256   */
    5357  public KeyStoreException()
    5458  {
    55     super();
    5659  }
    5760
    5861  /**
    59    * This method initializes a new <code>KeyStoreException</code> with a
    60    * detailed error message.
     62   * Create a new instance with a detailed error message.
    6163   *
    62    * @param msg The descriptive error message.
     64   * @param msg
    6365   */
    6466  public KeyStoreException(String msg)
Note: See TracChangeset for help on using the changeset viewer.