Commit ac79eed3 authored by Tristan Cavelier's avatar Tristan Cavelier

jslint pass exceptions.js

parent 7478eb2a
var jioException = function(spec, my) { /*jslint indent:2, maxlen: 80, sloppy: true */
var jioException = function (spec, my) {
var that = {}; var that = {};
spec = spec || {}; spec = spec || {};
my = my || {}; my = my || {};
that.name = 'jioException'; that.name = 'jioException';
that.message = spec.message || 'Unknown Reason.'; that.message = spec.message || 'Unknown Reason.';
that.toString = function() { that.toString = function () {
return that.name + ': ' + that.message; return that.name + ': ' + that.message;
}; };
return that; return that;
}; };
var invalidCommandState = function(spec, my) { var invalidCommandState = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my), command = spec.command;
spec = spec || {}; spec = spec || {};
var command = spec.command;
that.name = 'invalidCommandState'; that.name = 'invalidCommandState';
that.toString = function() { that.toString = function () {
return that.name +': ' + return that.name + ': ' +
command.getLabel() + ', ' + that.message; command.getLabel() + ', ' + that.message;
}; };
return that; return that;
}; };
var invalidStorage = function(spec, my) { var invalidStorage = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my), type = spec.storage.getType();
spec = spec || {}; spec = spec || {};
var type = spec.storage.getType();
that.name = 'invalidStorage'; that.name = 'invalidStorage';
that.toString = function() { that.toString = function () {
return that.name +': ' + return that.name + ': ' +
'Type "'+type + '", ' + that.message; 'Type "' + type + '", ' + that.message;
}; };
return that; return that;
}; };
var invalidStorageType = function(spec, my) { var invalidStorageType = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my), type = spec.type;
var type = spec.type;
that.name = 'invalidStorageType'; that.name = 'invalidStorageType';
that.toString = function() { that.toString = function () {
return that.name +': ' + return that.name + ': ' +
type + ', ' + that.message; type + ', ' + that.message;
}; };
return that; return that;
}; };
var jobNotReadyException = function(spec, my) { var jobNotReadyException = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my);
that.name = 'jobNotReadyException'; that.name = 'jobNotReadyException';
return that; return that;
}; };
var tooMuchTriesJobException = function(spec, my) { var tooMuchTriesJobException = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my);
that.name = 'tooMuchTriesJobException'; that.name = 'tooMuchTriesJobException';
return that; return that;
}; };
var invalidJobException = function(spec, my) { var invalidJobException = function (spec, my) {
var that = jioException(spec, my); var that = jioException(spec, my);
that.name = 'invalidJobException'; that.name = 'invalidJobException';
return that; return that;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment