/*
* Copyright (c) 1997, 1999, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package org.omg.CORBA.TypeCodePackage;
/**
* Provides the TypeCode
operations member_name()
,
* member_type()
, and member_label
.
* These methods
* raise Bounds
when the index parameter is greater than or equal
* to the number of members constituting the type.
*
* @since JDK1.2
*/
public final class Bounds extends org.omg.CORBA.UserException {
/**
* Constructs a Bounds
exception with no reason message.
*/
public Bounds() {
super();
}
/**
* Constructs a Bounds
exception with the specified
* reason message.
* @param reason the String containing a reason message
*/
public Bounds(String reason) {
super(reason);
}
}