// ************************************************************************ // $Id: IllegalAssignmentError.java 561 2005-07-11 20:09:17Z mdeters $ // ************************************************************************ // // jRate // // Copyright (C) 2001-2005 by Angelo Corsaro. // // All Rights Reserved. // // Permission to use, copy, modify, and distribute this software and // its documentation for any purpose is hereby granted without fee, // provided that the above copyright notice appear in all copies and // that both that copyright notice and this permission notice appear // in supporting documentation. I don't make any representations // about the suitability of this software for any purpose. It is // provided "as is" without express or implied warranty. // // // ************************************************************************* // // ************************************************************************* package javax.realtime; /** * The exception thrown on an attempt to make an illegal assignment. * For example, this will be thrown if logic attempts to assign a * reference to an object in ScopedMemory to a field in an object in * ImmortalMemory. * * @author Angelo Corsaro * @version 1.0 */ public class IllegalAssignmentError extends Error { /** * Creates a new IllegalAssignmentError instance. * */ public IllegalAssignmentError() { super(); } /** * Creates a new IllegalAssignmentError instance. * * @param description a String value representing the * description for the exception */ public IllegalAssignmentError(String description) { super(description); } }