- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/security/NoSuchProviderException.java (modified) (2 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/gcc
- Property svn:ignore
-
old new 26 26 configure.vr 27 27 configure.vrs 28 28 29 Makefile 29 dir.info30 30 lost+found 31 31 update.out
-
- Property svn:ignore
-
branches/GNU/src/gcc/libjava/java/security/NoSuchProviderException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* NoSuchProviderException.java -- What it says2 Copyright (C) 1998 Free Software Foundation, Inc.1 /* NoSuchProviderException.java -- 2 Copyright (C) 1998 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 42 42 * not available. 43 43 * 44 * @version 0.0 45 * 46 * @author Aaron M. Renn ([email protected]) 44 * @author Aaron M. Renn <[email protected]> 45 * @status updated to 1.4 47 46 */ 48 47 public class NoSuchProviderException extends GeneralSecurityException 49 48 { 50 49 /** 51 * This method initializes a new instance of <code>NoSuchProviderException</code> 52 * with no descriptive error message. 50 * Compatible with JDK 1.1+. 51 */ 52 private static final long serialVersionUID = 8488111756688534474L; 53 54 /** 55 * Create a new instance with no descriptive error message. 53 56 */ 54 57 public NoSuchProviderException() 55 58 { 56 super();57 59 } 58 60 59 61 /** 60 * This method initializes a new instance of <code>NoSuchProviderException</code> 61 * with a descriptive error message. 62 * Create a new instance with a descriptive error message. 62 63 * 63 * @param msg The descriptive error message.64 * @param msg 64 65 */ 65 66 public NoSuchProviderException(String msg) -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
