UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

12 lines (9 loc) 274 B
import { constructErrorResponse } from "../utils.js"; export class DeployValidationException extends Error{ public readonly data: any; constructor (message: string) { super(message); this.data=constructErrorResponse(); } } export default DeployValidationException;