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