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

9 lines
212 B
TypeScript

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