javax.realtime
Class IllegalAssignmentError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by javax.realtime.IllegalAssignmentError
All Implemented Interfaces:
java.io.Serializable

public class IllegalAssignmentError
extends java.lang.Error

The exception thrown on an attempt to make an illegal assignment. For example, this will be thrown on any attempt to assign a reference to an object in scoped memory (an area of memory identified be an instance of ScopedMemory) to a field of an object in immortal memory.

See Also:
Serialized Form

Constructor Summary
IllegalAssignmentError()
          A constructor for IllegalAssignmentError.
IllegalAssignmentError(java.lang.String description)
          A descriptive constructor for IllegalAssignmentError.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

IllegalAssignmentError

public IllegalAssignmentError()
A constructor for IllegalAssignmentError.


IllegalAssignmentError

public IllegalAssignmentError(java.lang.String description)
A descriptive constructor for IllegalAssignmentError.

Parameters:
description - Description of the error.