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
931 B
54 lines
931 B
/*
|
|
* Copyright (c) 1998, 2000, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package org.omg.CORBA.DynAnyPackage;
|
|
|
|
/**
|
|
* @author unattributed
|
|
*
|
|
* Dynamic Any insert operations raise the <code>InvalidValue</code>
|
|
* exception if the value inserted is not consistent with the type
|
|
* of the accessed component in the <code>DynAny</code> object.
|
|
*/
|
|
public final class InvalidValue
|
|
extends org.omg.CORBA.UserException {
|
|
|
|
/**
|
|
* Constructs an <code>InvalidValue</code> object.
|
|
*/
|
|
public InvalidValue() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an <code>InvalidValue</code> object.
|
|
* @param reason a <code>String</code> giving more information
|
|
* regarding the exception.
|
|
*/
|
|
public InvalidValue(String reason) {
|
|
super(reason);
|
|
}
|
|
}
|