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