class ConfigFileValidationError extends Error {
  constructor(message, path, errors) {
    super(message);
    this.name = this.constructor.name;
    Error.captureStackTrace(this, ConfigFileValidationError);