This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this code was tested using java ide from tutorials point | |
// see the running code on http://goo.gl/1pPhqd | |
import java.lang.*; | |
public class SampleExceptionCatching{ | |
public static void main(String []args){ | |
try{ | |
System.out.println("Hello World"); |
NewerOlder