braintree
Version:
A library for integrating with Braintree.
18 lines (12 loc) • 350 B
JavaScript
//@ sourceMappingURL=validation_error.map
// Generated by CoffeeScript 1.6.1
var ValidationError;
ValidationError = (function() {
function ValidationError(error) {
this.attribute = error.attribute;
this.code = error.code;
this.message = error.message;
}
return ValidationError;
})();
exports.ValidationError = ValidationError;