From 21d72c4a80fe2937d0c4ddd20624b27adbcd989b Mon Sep 17 00:00:00 2001 From: lizi00164331 Date: Mon, 7 Aug 2017 11:39:39 +0800 Subject: Upload the ESR GUI seed code Issue-ID: AAI-68 Change-Id: Ia50ce0570c2fabecd77199d4e8454f56fe587c4e Signed-off-by: lizi00164331 --- .../node_modules/mongoose/lib/error/validation.js | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/error/validation.js (limited to 'common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/error/validation.js') diff --git a/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/error/validation.js b/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/error/validation.js new file mode 100644 index 0000000..e3322d4 --- /dev/null +++ b/common/src/main/webapp/usageguide/appserver/node_modules/mongoose/lib/error/validation.js @@ -0,0 +1,63 @@ +/*! + * Module requirements + */ + +var MongooseError = require('../error.js'); + +/** + * Document Validation Error + * + * @api private + * @param {Document} instance + * @inherits MongooseError + */ + +function ValidationError(instance) { + this.errors = {}; + if (instance && instance.constructor.name === 'model') { + MongooseError.call(this, instance.constructor.modelName + ' validation failed'); + } else { + MongooseError.call(this, 'Validation failed'); + } + if (Error.captureStackTrace) { + Error.captureStackTrace(this); + } else { + this.stack = new Error().stack; + } + this.name = 'ValidationError'; + if (instance) { + instance.errors = this.errors; + } +} + +/*! + * Inherits from MongooseError. + */ + +ValidationError.prototype = Object.create(MongooseError.prototype); +ValidationError.prototype.constructor = MongooseError; + + +/** + * Console.log helper + */ + +ValidationError.prototype.toString = function() { + var ret = this.name + ': '; + var msgs = []; + + Object.keys(this.errors || {}).forEach(function(key) { + if (this === this.errors[key]) { + return; + } + msgs.push(String(this.errors[key])); + }, this); + + return ret + msgs.join(', '); +}; + +/*! + * Module exports + */ + +module.exports = exports = ValidationError; -- cgit 1.2.3-korg