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.
55 lines
916 B
55 lines
916 B
/*
|
|
* Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA;
|
|
|
|
/**
|
|
* A user exception thrown when a parameter is not within
|
|
* the legal bounds for the object that a method is trying
|
|
* to access.
|
|
*
|
|
* @see <A href="../../../../technotes/guides/idl/jidlExceptions.html">documentation on
|
|
* Java IDL exceptions</A>
|
|
*/
|
|
|
|
public final class Bounds extends org.omg.CORBA.UserException {
|
|
|
|
/**
|
|
* Constructs an <code>Bounds</code> with no specified detail message.
|
|
*/
|
|
public Bounds() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an <code>Bounds</code> with the specified detail message.
|
|
*
|
|
* @param reason the detail message.
|
|
*/
|
|
public Bounds(String reason) {
|
|
super(reason);
|
|
}
|
|
}
|