/*
* 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 InvalidName
exception is raised when
* ORB.resolve_initial_references
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 InvalidName
exception with no reason message.
*/
public InvalidName() {
super();
}
/**
* Constructs an InvalidName
exception with the specified
* reason message.
* @param reason the String containing a reason message
*/
public InvalidName(String reason) {
super(reason);
}
}