01: /***** Copyright (c) 1999 Object Management Group. Unlimited rights to
02: duplicate and use this code are hereby granted provided that this
03: copyright notice is included.
04: *****/package org.omg.PortableServer.POAManagerPackage;
05:
06: public final class AdapterInactive extends org.omg.CORBA.UserException {
07:
08: public AdapterInactive() {
09: super (AdapterInactiveHelper.id());
10: }
11:
12: public AdapterInactive(String reason) { // full constructor
13: super (AdapterInactiveHelper.id() + " " + reason);
14: }
15: }
|