-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShCodingTestException.java
More file actions
23 lines (18 loc) · 639 Bytes
/
Copy pathShCodingTestException.java
File metadata and controls
23 lines (18 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package algorithm;
public class ShCodingTestException extends RuntimeException {
public ShCodingTestException() {
super();
}
public ShCodingTestException(String message) {
super(message);
}
public ShCodingTestException(String message, Throwable cause) {
super(message, cause);
}
public ShCodingTestException(Throwable cause) {
super(cause);
}
protected ShCodingTestException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}