@zuu/owl
Version:
Zuu's Experimental GraphQL Implementation
11 lines • 430 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class ArgumentValidationError extends Error {
constructor(validationErrors) {
super("Argument Validation Error");
this.validationErrors = validationErrors;
Object.setPrototypeOf(this, new.target.prototype);
}
}
exports.ArgumentValidationError = ArgumentValidationError;
//# sourceMappingURL=ArgumentValidationError.js.map