6 lines
166 B
TypeScript
6 lines
166 B
TypeScript
export class AuthenticationError extends Error {
|
|
public constructor(message: string) {
|
|
super(message);
|
|
this.name = "AuthenticationError";
|
|
}
|
|
}
|