You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
package org.omg.CosNaming.NamingContextPackage;
|
|
|
|
|
|
/**
|
|
* org/omg/CosNaming/NamingContextPackage/NotFound.java .
|
|
* Generated by the IDL-to-Java compiler (portable), version "3.2"
|
|
* from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u201/12322/corba/src/share/classes/org/omg/CosNaming/nameservice.idl
|
|
* Saturday, December 15, 2018 6:38:37 PM PST
|
|
*/
|
|
|
|
public final class NotFound extends org.omg.CORBA.UserException
|
|
{
|
|
public org.omg.CosNaming.NamingContextPackage.NotFoundReason why = null;
|
|
public org.omg.CosNaming.NameComponent rest_of_name[] = null;
|
|
|
|
public NotFound ()
|
|
{
|
|
super(NotFoundHelper.id());
|
|
} // ctor
|
|
|
|
public NotFound (org.omg.CosNaming.NamingContextPackage.NotFoundReason _why, org.omg.CosNaming.NameComponent[] _rest_of_name)
|
|
{
|
|
super(NotFoundHelper.id());
|
|
why = _why;
|
|
rest_of_name = _rest_of_name;
|
|
} // ctor
|
|
|
|
|
|
public NotFound (String $reason, org.omg.CosNaming.NamingContextPackage.NotFoundReason _why, org.omg.CosNaming.NameComponent[] _rest_of_name)
|
|
{
|
|
super(NotFoundHelper.id() + " " + $reason);
|
|
why = _why;
|
|
rest_of_name = _rest_of_name;
|
|
} // ctor
|
|
|
|
} // class NotFound
|