UNPKG

create-cf-planetscale-app

Version:

Create a Cloudflare workers app for building production ready RESTful APIs using Hono

11 lines (9 loc) 257 B
export class ApiError extends Error { statusCode: number isOperational: boolean constructor(statusCode: number, message: string, isOperational = true) { super(message) this.statusCode = statusCode this.isOperational = isOperational } }