Tagged Questions
4
votes
1answer
276 views
How to Handle Unathorized Exception
I need to handle unauthorized exception.. My code is something like:
try
{
//MY CODE
}
catch (Exception exx)
{
//My Code
}
I can't understand why if a NOT AUTH exception is thrown, my code didn't ...