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.POAPackage;
05:
06: public final class ObjectNotActive extends org.omg.CORBA.UserException {
07:
08: public ObjectNotActive() {
09: super (ObjectNotActiveHelper.id());
10: }
11:
12: public ObjectNotActive(String reason) { // full constructor
13: super (ObjectNotActiveHelper.id() + " " + reason);
14: }
15: }
|