try{
//statements for monitoring the errors.
}
catch(Exception Type1 Exceptionobj1)
{
//Exception-handling block
}
catch(ExceptionType2 Exceptionobj2)
{
//Exception-handling block
}
-----------------
----------------
catch(ExceptionTypeN Exceptionobjn)
{
//Exception-handling block
}
finally
{
//statements to be executed before try
}