UNPKG

codalware-auth

Version:

Complete authentication system with enterprise security, attack protection, team workspaces, waitlist, billing, UI components, 2FA, and account recovery - production-ready in 5 minutes. Enhanced CLI with verification, rollback, and App Router scaffolding.

8 lines (6 loc) 195 B
export class AuthCoreError extends Error { constructor(public message: string, public statusCode: number = 500) { super(message); this.name = 'AuthCoreError'; } }