- Timestamp:
- Apr 27, 2004, 8:39:34 PM (22 years ago)
- Location:
- branches/GNU/src/gcc
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
libjava/java/rmi/activation/UnknownGroupException.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/rmi/activation/UnknownGroupException.java
-
Property cvs2svn:cvs-rev
changed from
1.1to1.1.1.2
r1390 r1391 1 /* 2 Copyright (c) 1996, 1997, 1998, 1999Free Software Foundation, Inc.1 /* 2 Free Software Foundation, Inc. 3 3 4 4 This file is part of GNU Classpath. … … 38 38 package java.rmi.activation; 39 39 40 public class UnknownGroupException 41 extends ActivationException { 40 /** 41 * Thrown when an <code>ActivationGroupID</code> parameter is invalid or 42 * unknown. 43 * 44 * @author unknown 45 * @see Activatable 46 * @see ActivationGroup 47 * @see ActivationID 48 * @see ActivationMonitor 49 * @see ActivationSystem 50 * @since 1.2 51 * @status updated to 1.4 52 */ 53 public class UnknownGroupException extends ActivationException 54 { 55 /** 56 * Compatible with JDK 1.2+. 57 */ 58 private static final long serialVersionUID = 7056094974750002460L; 42 59 43 public UnknownGroupException(String s) { 44 super(s); 60 /** 61 * Create an exception with a message. 62 * 63 * @param s the message 64 */ 65 public UnknownGroupException(String s) 66 { 67 super(s); 68 } 45 69 } 46 47 } -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
