KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > corba > se > PortableActivationIDL > ServerAlreadyActive


1 package com.sun.corba.se.PortableActivationIDL;
2
3
4 /**
5 * com/sun/corba/se/PortableActivationIDL/ServerAlreadyActive.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8 * Saturday, February 9, 2008 2:04:41 AM PST
9 */

10
11 public final class ServerAlreadyActive extends org.omg.CORBA.UserException JavaDoc
12 {
13   public String JavaDoc serverId = null;
14
15   public ServerAlreadyActive ()
16   {
17     super(ServerAlreadyActiveHelper.id());
18   } // ctor
19

20   public ServerAlreadyActive (String JavaDoc _serverId)
21   {
22     super(ServerAlreadyActiveHelper.id());
23     serverId = _serverId;
24   } // ctor
25

26
27   public ServerAlreadyActive (String JavaDoc $reason, String JavaDoc _serverId)
28   {
29     super(ServerAlreadyActiveHelper.id() + " " + $reason);
30     serverId = _serverId;
31   } // ctor
32

33 } // class ServerAlreadyActive
34
Popular Tags