checkException static method

void checkException(
  1. Pointer<Pointer<Void>> exception,
  2. DllHandler handler
)

Implementation

static void checkException(
    Pointer<Pointer<Void>> exception, DllHandler handler) {
  if (exception.value.address != 0) {
    throw WebFrameworkException(exception, handler);
  }
}