blob: 6554c53714be6eb51add2df629130ef954bbedbd [file] [log] [blame]
/*
Copyright 2012-2015, Yahoo Inc.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
module.exports.create = function(message) {
const err = new Error(message);
err.inputError = true;
return err;
};