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.
54 lines
970 B
54 lines
970 B
/*
|
|
* Copyright (c) 1997, 2000, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA.ORBPackage;
|
|
|
|
/**
|
|
* The <code>InvalidName</code> exception is raised when
|
|
* <code>ORB.resolve_initial_references</code> is passed a name
|
|
* for which there is no initial reference.
|
|
*
|
|
* @see org.omg.CORBA.ORB#resolve_initial_references(String)
|
|
* @since JDK1.2
|
|
*/
|
|
|
|
final public class InvalidName extends org.omg.CORBA.UserException {
|
|
/**
|
|
* Constructs an <code>InvalidName</code> exception with no reason message.
|
|
*/
|
|
public InvalidName() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an <code>InvalidName</code> exception with the specified
|
|
* reason message.
|
|
* @param reason the String containing a reason message
|
|
*/
|
|
public InvalidName(String reason) {
|
|
super(reason);
|
|
}
|
|
}
|