export class ControlApiError extends Error { public constructor( message: string, public readonly statusCode: number ) { super(message); this.name = "ControlApiError"; } }