vault-link/frontend/sync-client/src/services/authentication-error.ts

6 lines
166 B
TypeScript

export class AuthenticationError extends Error {
public constructor(message: string) {
super(message);
this.name = "AuthenticationError";
}
}