@njgingrich/aocrunner@0.1.18
latest
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers




JSR Score
76%
Published
5 months ago (0.1.18)
export class ApiError extends Error { constructor(message?: string) { super(message ?? "ApiError"); this.name = "ApiError"; } } export class NotFoundError extends ApiError { constructor(message?: string) { super(message ?? "NotFoundError"); this.name = "NotFoundError"; } } export class ApiServerError extends ApiError { constructor(message?: string) { super(message ?? "ApiServerError"); this.name = "ApiServerError"; } } export class SessionTokenError extends ApiError { constructor(message?: string) { super(message ?? "SessionTokenError"); this.name = "SessionTokenError"; } }