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