1 package org.omg.CORBA;2 3 /**4 * CORBA V2.3 - 1.3 July 1998 (merged version)5 * last modified: 02/03/99 RT6 */7 final public class UnknownUserException extends org.omg.CORBA.UserException {8 9 public org.omg.CORBA.Any except;10 11 public UnknownUserException() {12 super();13 } 14 15 public UnknownUserException(org.omg.CORBA.Any except) 16 { 17 super();18 this.except = except;19 } 20 } 21 22 23