'catch' on its own:
try
{
// code
}
catch
{
// catches any exception
}
If you need to access the Exception object, you can also do this:
try
{
// code
}
catch (Exception ex)
{
// catches any exception derived from System.Exception
Console.WriteLine(ex.Message);
}