UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

11 lines (9 loc) 251 B
export class TestCaseFailureError extends Error { status: number; constructor(message: string, status: number) { super(message); this.status = status; this.name = this.constructor.name; Error.captureStackTrace(this, this.constructor); } }