The OpenD Programming Language

InvalidMemoryOperationError

Thrown on an invalid memory operation.

An invalid memory operation error occurs in circumstances when the garbage collector has detected an operation it cannot reliably handle. The default D GC is not re-entrant, so this can happen due to allocations done from within finalizers called during a garbage collection cycle.

class InvalidMemoryOperationError : Error {}

Inherited Members

From Error

bypassedException
Throwable bypassedException;

The first Exception which was bypassed when this Error was thrown, or null if no Exceptions were pending.

Meta