all files / lib/error/ invalid-input.js

75% Statements 3/4
0% Branches 0/2
0% Functions 0/1
75% Lines 3/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                       
#!/usr/bin/node
var CliInvalidInputError = require('./abstract-error');
/**
 * CLI Invalid Input Error
 *
 * Invalid user input, thrown when a user provides an invalid set of arguments.
 * @param message
 * @param statusCode
 * @constructor
 */
CliInvalidInputError.prototype.setMessage = function (message) {
	return message || "There was an issue with one or more of the inputs provided."
}
 
module.exports = CliInvalidInputError;