EXAMPLE OF EXCEPTION HANDLING (JAVA)
public class JavaEcxeptionExample {
public static void main (String args[]){
try {
int data= 100/0;
}
catch (ArithmeticException e) {
System.out.println(e);
}
System.out.println("rest of the code...");
}
}
We here at iknowmycamera try to bring you out some amazing pictures along with related info of some places which we travel. You may choose a category which you might be interested in and start exploring.
Comments
Post a Comment
If you have any doubts, Feel free to Ask !