createException static method

Pointer<Pointer<Void>> createException()

Implementation

static Pointer<Pointer<Void>> createException() {
  Pointer<Pointer<Void>> exception = malloc.allocate(sizeOf<Pointer<Void>>());
  exception.value = nullptr;

  return exception;
}