Can any one please explain me why the statement given below is showing error.

public static void main(String args[]){
try{
}
catch(IOException t){ // line 4
}
}

This code is...