[][src]Function dart_sys::Dart_ReThrowException

pub unsafe extern "C" fn Dart_ReThrowException(
    exception: Dart_Handle,
    stacktrace: Dart_Handle
) -> Dart_Handle

Rethrows an exception.

Rethrows an exception, unwinding all dart frames on the stack. If successful, this function does not return. Note that this means that the destructors of any stack-allocated C++ objects will not be called. If there are no Dart frames on the stack, an error occurs.

\return An error handle if the exception was not thrown. Otherwise the function does not return.