Hi there,
I have just been learning these kind of things myself so I will give what limited knowledge I have figured out to date.
First, I am not sure if you are asking about seeing a backend or frontend exception. For the backend, it depends what mechanism you used to communicate the information back to the front (if at all). In my case, I captured the backend exception, popped it into a Json message and shipped that back to the front. I then decode the Json message and can inspect that. My decoding code is:
Code:
var serverResponse;
try {
serverResponse = Ext.decode(response.responseText);
}
catch(ex) {
this.showError(response.responseText);
return;
}
The raw Json message is in response.responseText and so I can insepect both the message and the decoded result.
Fortunately this code snippet also shows a frontend JS try/catch, so in this case you sould be able to inspect ex in firefox to see what made this pop.
Hopefully you find this helpful. Happy hunting.