/* * 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 InvalidValue * exception if the value inserted is not consistent with the type * of the accessed component in the DynAny object. */ public final class InvalidValue extends org.omg.CORBA.UserException { /** * Constructs an InvalidValue object. */ public InvalidValue() { super(); } /** * Constructs an InvalidValue object. * @param reason a String giving more information * regarding the exception. */ public InvalidValue(String reason) { super(reason); } }