catch_ method

JSPromise catch_(
  1. Function onRejected
)

Implementation

JSPromise catch_(Function onRejected) {
  return then(null, onRejected);
}