mirror of
https://github.com/fluxerapp/fluxer.git
synced 2026-09-03 05:10:25 +03:00
12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
export class WorkerQueueOverflowError extends Error {
|
|
readonly taskType: string;
|
|
|
|
constructor(taskType: string, reason: string) {
|
|
super(`Jobs stream rejected task "${taskType}": ${reason}`);
|
|
this.name = 'WorkerQueueOverflowError';
|
|
this.taskType = taskType;
|
|
}
|
|
}
|