22 lines
310 B
JavaScript
Raw Normal View History

'use strict'
class AbortError extends Error {
constructor () {
super('The operation was aborted')
this.code = AbortError.code
2019-04-18 18:44:17 +08:00
this.type = AbortError.type
}
static get code () {
return 'ABORT_ERR'
}
2019-04-18 18:44:17 +08:00
static get type () {
return 'aborted'
}
}
module.exports = {
AbortError
}