You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-14 21:21:31 +03:00
6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
export class AbortError extends Error {
|
|
constructor() {
|
|
super('The command was aborted');
|
|
}
|
|
}
|