8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import { BadRequestError } from "@spec/relay";
|
|
|
|
export class AuthenticationStrategyPayloadError extends BadRequestError {
|
|
constructor() {
|
|
super("Provided authentication payload is not recognized.");
|
|
}
|
|
}
|