checkSucceededInt static method

  1. @internal
void checkSucceededInt(
  1. int result
)

Implementation

@internal
static void checkSucceededInt(
  int result,
) {
  if (result != 0) {
    throw SodiumException();
  }
}