b959fbfc创建于 2015年7月12日历史提交
var util = require('util');

var ValueError = function(message) {
    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

    this.name = 'ValueError';
    this.message = message;
};

util.inherits(ValueError, Error);

module.exports = ValueError;