Files
optima/api/src/Errors/AuthenticationError.ts
T

9 lines
216 B
TypeScript

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