grille
Version:
Simple CMS using Google Spreadsheets
15 lines (9 loc) • 322 B
JavaScript
;
function ValidationError(message) {
this.message = message;
this.stack = (new Error()).stack;
}
ValidationError.prototype.name = 'ValidationError';
ValidationError.prototype = Object.create(Error.prototype);
ValidationError.prototype.constructor = ValidationError;
module.exports = ValidationError;