Files
optima/src/Errors/AuthenticationError.ts
T
2026-01-24 16:59:50 -06:00

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;
}
}