diff --git a/src/utils/errors.ts b/src/utils/errors.ts index 5d63737..25a3399 100644 --- a/src/utils/errors.ts +++ b/src/utils/errors.ts @@ -34,7 +34,7 @@ export class InvalidResponseError extends Error { constructor(details: InvalidResponseErrorDetails) { super(details.message); - this.name = 'InvalidQueryRequest'; + this.name = 'InvalidResponseError'; this.message = details.message; this.code = details.code; }