Initial commit of working RSS Aggregator build

This commit is contained in:
2026-05-12 17:04:02 -03:00
parent ea3a2ca53e
commit 7ac2f6e384
4962 changed files with 1032666 additions and 0 deletions
+59
View File
@@ -0,0 +1,59 @@
'use strict'
const assert = require('assert')
class RedisError extends Error {
get name () {
return this.constructor.name
}
}
class ParserError extends RedisError {
constructor (message, buffer, offset) {
assert(buffer)
assert.strictEqual(typeof offset, 'number')
const tmp = Error.stackTraceLimit
Error.stackTraceLimit = 2
super(message)
Error.stackTraceLimit = tmp
this.offset = offset
this.buffer = buffer
}
get name () {
return this.constructor.name
}
}
class ReplyError extends RedisError {
constructor (message) {
const tmp = Error.stackTraceLimit
Error.stackTraceLimit = 2
super(message)
Error.stackTraceLimit = tmp
}
get name () {
return this.constructor.name
}
}
class AbortError extends RedisError {
get name () {
return this.constructor.name
}
}
class InterruptError extends AbortError {
get name () {
return this.constructor.name
}
}
module.exports = {
RedisError,
ParserError,
ReplyError,
AbortError,
InterruptError
}