Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ishanbakshi
ishanbakshi / SampleExceptionCatching.java
Last active July 13, 2016 06:17
Sample code to test exception catching in JAVA. This code demonstrates how to build a mapper function to find which user defined exception was thrown.
// 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");