You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-13 10:02:24 +03:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
export class AbortError extends Error {
|
|
constructor() {
|
|
super('The command was aborted');
|
|
}
|
|
}
|
|
|
|
export class WatchError extends Error {
|
|
constructor() {
|
|
super('One (or more) of the watched keys has been changed');
|
|
}
|
|
}
|