-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExceptionHandlingExample1.java
121 lines (96 loc) · 2.95 KB
/
ExceptionHandlingExample1.java
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
package concept.examples.exceptionhandling;
//Java Interview Questions Exception Handling
//�������������������������������������������
//What is difference between Error and Exception - done?
//What is the Exception Handling Hierarchy - done?
//Difference between runtime exception and checked exception?
//When should we use Checked Exceptions?
//What does Exception propagation mean?
//Why should type 'Exception' not be catched?
//What are the best practices of Exception Handling?
//How do you create a custom exception - checked and unchecked?
//Is try without catch and finally allowed?
//When is finally block NOT executed?
//Let's say there is a return in the try block. Will finally block be executed?
//Exception Handling - Best Practices
//Runtime Exceptions => Unchecked exceptions
//Checked Exceptions
class CheckedException extends Exception {
}
class RuntimeExceptionExample extends RuntimeException {
}
class Test {
void readAFileAndParse() throws RuntimeExceptionExample {
// Reading a file => FileNotFound
// Parses the file => FileIsNotInCorrectFormat
}
}
class Reuse {
void doSomething() {
Test test = new Test();
test.readAFileAndParse();
}
public void firstMethod() throws RuntimeException {
}
public void secondMethod() {
firstMethod();
}
}
// Below class definitions show creation of a programmer defined exception in
// Java.
// Programmer defined classes
class CheckedException1 extends Exception {
}
class CheckedException2 extends CheckedException1 {
}
class UnCheckedException extends RuntimeException {
}
class UnCheckedException2 extends UnCheckedException {
}
class Connection {
void open() {
System.out.println("Connection Opened");
}
void close() {
System.out.println("Connection Closed");
}
}
public class ExceptionHandlingExample1 {
public static void methodThrowCheckedException() throws RuntimeException {
throw new RuntimeException();
}
public static void methodSomething() {
ExceptionHandlingExample1.methodThrowCheckedException();
}
// Exception Handling Example 1
// Let's add a try catch block in method2
public static void main(String[] args) {
method1();
System.out.println("Line after Exception - Main");
}
private static void method1() {
method2();
System.out.println("Line after Exception - Method 1");
}
private static void method2() {
Connection connection = new Connection();
connection.open();
try {
return;
} catch (Exception e) {
} finally {
// 1
// 2
// 3
}
}
}
// Connection Opened
// Connection Closed
// Exception in thread "main" java.lang.NullPointerException
// at
// com.rithus.exceptionhandling.ExceptionHandlingExample1.method2(ExceptionHandlingExample1.java:33)
// at
// com.rithus.exceptionhandling.ExceptionHandlingExample1.method1(ExceptionHandlingExample1.java:22)
// at
// com.rithus.exceptionhandling.ExceptionHandlingExample1.main(ExceptionHandlingExample1.java:17)