@logi.one/rest-client
Version:
This is a free, ultra-lightweight and easy to use rest client for node.js supporting JSON requests and streams with no external dependencies.
12 lines (11 loc) • 334 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.SchemaValidationError = void 0;
class SchemaValidationError extends Error {
issues;
constructor(issues) {
super('Schema validation error');
this.issues = issues;
}
}
exports.SchemaValidationError = SchemaValidationError;
;