MCPcopy Create free account
hub / github.com/WardAnalytics/WardGraph /

Class

src/services/auth/errors.ts:2–2  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// User Error is a base class for all user related errors. We can cacth them in bulk and handle them accordingly.
2export class AuthError extends Error {
3 constructor(message: string) {
4 super(message);
5 this.name = "UserError";

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected