Template
1
0
Files
boilerplate/platform/spec/auth/errors.ts
2025-09-19 18:58:02 +02:00

8 lines
215 B
TypeScript

import { BadRequestError } from "@platform/relay";
export class AuthenticationStrategyPayloadError extends BadRequestError {
constructor() {
super("Provided authentication payload is not recognized.");
}
}