mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-03 22:01:15 +00:00
22 lines
310 B
JavaScript
22 lines
310 B
JavaScript
'use strict'
|
|
|
|
class AbortError extends Error {
|
|
constructor () {
|
|
super('The operation was aborted')
|
|
this.code = AbortError.code
|
|
this.type = AbortError.type
|
|
}
|
|
|
|
static get code () {
|
|
return 'ABORT_ERR'
|
|
}
|
|
|
|
static get type () {
|
|
return 'aborted'
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
AbortError
|
|
}
|