/[classpath]/classpath/java/rmi/activation/UnknownGroupException.java
ViewVC logotype

Diff of /classpath/java/rmi/activation/UnknownGroupException.java

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

revision 1.2 by mark, Tue Jan 22 22:27:00 2002 UTC revision 1.3 by ericb, Sun Feb 24 04:25:17 2002 UTC
# Line 1  Line 1 
1  /*  /* UnknownGroupException.java -- thrown on an invalid ActivationGroupID
2    Copyright (c) 1996, 1997, 1998, 1999 Free Software Foundation, Inc.     Copyright (c) 1996, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 37  exception statement from your version. * Line 37  exception statement from your version. *
37    
38  package java.rmi.activation;  package java.rmi.activation;
39    
40  public class UnknownGroupException  /**
41          extends ActivationException {   * Thrown when an <code>ActivationGroupID</code> parameter is invalid or
42     * unknown.
43  public UnknownGroupException(String s) {   *
44          super(s);   * @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;
59    
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      }
69  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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