fruitstand
Version:
48 lines (38 loc) • 884 B
JavaScript
/*!
* Module dependencies.
*/
var MongooseError = require('../error.js');
var errorMessages = MongooseError.messages;
/**
* Schema validator error
*
* @param {String} path
* @param {String} msg
* @param {String|Number|any} val
* @inherits MongooseError
* @api private
*/
function ValidatorError (path, msg, type, val) {
if (!msg) msg = errorMessages.general.default;
var message = this.formatMessage(msg, path, type, val);
MongooseError.call(this, message);
Error.captureStackTrace(this, arguments.callee);
this.name = 'ValidatorError';
this.path = path;
this.type = type;
this.value = val;
};
/*!
* toString helper
*/
ValidatorError.prototype.toString = function () {
return this.message;
}
/*!
* Inherits from MongooseError
*/
ValidatorError.prototype.__proto__ = MongooseError.prototype;
/*!
* exports
*/
module.exports = ValidatorError;