Class MemoryError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--MemoryError
All Implemented Interfaces:
java.io.Serializable

public class MemoryError
extends java.lang.Error

A MemoryError represents a run time memory access error for a user task.

See Also:
Serialized Form

Constructor Summary
MemoryError()
          new MemoryError() returns a new memory access error with an empty message string.
MemoryError(java.lang.String msg)
          new MemoryError(msg) returns a new memory access error with message string msg.
 
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

MemoryError

public MemoryError()
new MemoryError() returns a new memory access error with an empty message string.


MemoryError

public MemoryError(java.lang.String msg)
new MemoryError(msg) returns a new memory access error with message string msg.