I am trying to show any type of Ajax request response errors through a common dialog just like a common error page. Do we have any option to catch error descriptions from different Ajax calls in different pages and show it with common Ajax error event?
$(document).ajaxError(function(){
alert("error description is :" +"error desc error from xyz page");
});