Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
28 lines (27 loc) · 749 Bytes

File metadata and controls

28 lines (27 loc) · 749 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package chapter14;
/* J14_07.java */
/* Using Multiple catch Statements in a single try Statement */
public class J14_07 {
public static void main(String args[]){
int x[] = {10, 20};
int y = 5, d;
try{
d = x[2] /x[1]; //Exception Makes Here (x[2] does not exist)
}
catch (ArithmeticException e) // First Exception Handler
{
System.out.println("Value of d is undetermined");
System.out.println("\t(Division by zero)");
}
catch (ArrayStoreException e) // Second Exception Handler
{
System.out.println("Invalid Data Type");
}
catch (ArrayIndexOutOfBoundsException e) //Third Exception Handler
{
System.out.println("Array Index Error");
}
d = x[1]/x[0] ;
System.out.println("Now d = " +d);
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.