Empty catch block is designed to catch any unhandled exceptions.
public void aFunction(){
try
{
// …
}
catch
{
// Any unhandled exception
throw;
}
}
in exception hierarchy, catch block is in the highest hierarchy. This is called General Catch Block.
