Class CoError

A subclass of Exception used by Coroutine resumption.

If a Coroutine fails during resumption, the exception has the trace of the Coroutine vm.

If, however, the Coroutine cannot be resumed, an instance of this error is returned. When resumption raises this error, the trace will be of the calling vm.

This is not meant for use outside of Coroutine resumption.

class CoError < Exception
{
    # From Exception
    public var @message: String
    public var @traceback: List[String]
}

constructor(message: String): CoError