Skip to content

Commit 355c7f7

Browse files
committed
chore: fix error name
1 parent 611a2d8 commit 355c7f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/idempotency/src/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { IdempotencyRecord } from './persistence/IdempotencyRecord.js';
88
class IdempotencyUnknownError extends Error {
99
public constructor(message?: string, options?: ErrorOptions) {
1010
super(message, options);
11-
this.name = 'IdempotencyError';
11+
this.name = 'IdempotencyUnknownError';
1212
}
1313
}
1414

0 commit comments

Comments
 (0)