1 package com.sun.corba.se.PortableActivationIDL; 2 3 4 10 11 public final class ServerNotActive extends org.omg.CORBA.UserException  12 { 13 public String serverId = null; 14 15 public ServerNotActive () 16 { 17 super(ServerNotActiveHelper.id()); 18 } 20 public ServerNotActive (String _serverId) 21 { 22 super(ServerNotActiveHelper.id()); 23 serverId = _serverId; 24 } 26 27 public ServerNotActive (String $reason, String _serverId) 28 { 29 super(ServerNotActiveHelper.id() + " " + $reason); 30 serverId = _serverId; 31 } 33 } | Popular Tags |