Gerar uma exceção se a consulta jQuery não corresponder a nenhum elemento

 jQuery.fn.single = function() {
if (this.length != 1) {
throw new Error("Expected 1, got " +this.length);
}
return this;
};

var headers = $("h1").single(); //boom!