/* * @(#)InvalidValue.java 1.13 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package org.omg.CORBA.DynAnyPackage; /** * @author unattributed * @version 1.13 12/19/03 * * 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); } }