javax.realtime
Class IllegalAssignmentError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--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 if logic attempts to assign a reference to an object in ScopedMemory to a field in an object in ImmortalMemory.

See Also:
Serialized Form

Constructor Summary
IllegalAssignmentError()
          A constructor for IllegalAssignmentError.
IllegalAssignmentError(java.lang.String description)
          A descriptive constructor for IllegalAssignmentError.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, 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.