mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-05 16:11:18 +00:00
17 lines
214 B
JavaScript
17 lines
214 B
JavaScript
|
'use strict'
|
||
|
|
||
|
class AbortError extends Error {
|
||
|
constructor () {
|
||
|
super('AbortError')
|
||
|
this.code = AbortError.code
|
||
|
}
|
||
|
|
||
|
static get code () {
|
||
|
return 'ABORT_ERR'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
AbortError
|
||
|
}
|