I'm using an external SDK which wants me to use
try {
...
}
catch (Ex20301Exception)
{
...
}
I'd rather use
try {
...
}
catch (CustomerOverCreditLimitException)
{
...
}
Is there a way I can achieve this? Or do I have to live with comments?