Async.prototype.catch()
APIAsync
该方法主要时针对Async错误处理的两种调用
调用方法
- (step) -> Async<error, result ...>将当前的Async过程续接在
step
上,前置参数为可能出现的错误,其余结果后置一位
- ((error) -> void) -> this兼容
Promise.prototype.catch()
函数
关联API
- @.async()
- @.async.reject()
- @.async.resolve()
- Async()
- Async.prototype.all()
- Async.prototype.async()
- Async.prototype.domain()
- Async.prototype.finally()
- Async.prototype.finished()
- Async.prototype.frame
- Async.prototype.pipe()
- Async.prototype.promise()
- Async.prototype.rejected()
- Async.prototype.resolve()
- Async.prototype.then()