Handling Errors with try-catch-finally

What error handling pattern is shown here?
try {
  await someAsyncOperation();
} catch (error) {
  if (!retryOperation()) {
    throw error;
  }
}
Next Question (12/20)