This post originated from an RSS feed registered with Java Buzz
by Kiran Kumar.
Original Post: Java 7 feature :Multi catch block exception handling example with tutorial
Feed Title: Java,Maven,Linux,Unix,Hadoop,HDFS,Hive basic tutorials,examples
Feed URL: http://www.cloudhadoop.com/feeds/posts/default
Feed Description: My Blog on Java,Maven Unix, Linux,Hadoop,MySQL,tutorial with examples
Java 7 features – Exception Handling
Java 7 language has introduced features like Usage of Stirings in Switch case, and improving the exception
handling . It introduced multi catch block
Prior to java 7, if we want to handle multiple exceptions in single catch block is not possible, but we can achieve this using multiple catch block where each catch block used to catch single exception.
Let