UNPKG

@codefresh-io/yaml-validator

Version:

An NPM module/CLI for validating the Codefresh YAML

12 lines (8 loc) 188 B
'use strict'; class ValidatorError extends Error { constructor(error) { super(error.message); this.details = error.details; } } module.exports = ValidatorError;