HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /proc/self/root/usr/share/nodejs/istanbul/lib/util/
Upload File :
Current File : //proc/self/root/usr/share/nodejs/istanbul/lib/util/input-error.js
/*
 Copyright (c) 2012, Yahoo! Inc.  All rights reserved.
 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
 */

module.exports.create = function (message) {
    var err = new Error(message);
    err.inputError = true;
    return err;
};