var app = app || {};

app.fishrod.utils = {
	validate: {
		isEmpty: function(value){
			if(typeof value === undefined || value == '' || value === null){
				return true;
			}
			return false;			
		}
	},
	exception: function(message){
		throw message;
	}
};
