Possible Duplicates:
Why are empty catch blocks a bad idea?
Is there any valid reason to ever ignore a caught exception
Do you know any situations when an empty catch block is not the absolute evil?
try
{
...
// What and When?
...
}
catch { }
catch
blocks are always evil, except when used with emptytry
blocks. – Elegycatch
blocks are not always evil. Empty all-match catch blocks are always evil. – Monaco