forked from smartherd/JavaTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path33_ExceptionHandling.java
More file actions
35 lines (27 loc) · 1005 Bytes
/
33_ExceptionHandling.java
File metadata and controls
35 lines (27 loc) · 1005 Bytes
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
29
30
31
32
33
34
35
// Exception Handling
// 1. Basics of Exception Handling
// 2. Handling multiple exceptions at same time
// 3. Handling unknown exceptions
public class Main {
public static void main(String[] args) {
System.out.println("Program starts"); // Executed
int[] myArray = { 3, 9, 45, 22, 16 };
try {
int result = myArray[1] / 0; // Arithmetic Exception
System.out.println(myArray[1]); // ArrayIndexOutOfBoundException, App crashed
} catch (ArrayIndexOutOfBoundsException | ArithmeticException exception) {
// Your code.. Optional
System.out.println(exception);
} finally {
// your code.. Optional
System.out.println("The finally block is always executed");
}
try {
String name = null; // No object
System.out.println(name.length());
} catch (Exception exception) { // General way to handle the exception
System.out.println(exception);
}
System.out.println("Program ends"); // Executed .
}
}