Skip to content

Commit 7443157

Browse files
committed
fix some bug in khaosDB
1 parent 2c76de5 commit 7443157

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package org.tron.core.exception;
2+
3+
public class TronRuntimeException extends RuntimeException {
4+
5+
public TronRuntimeException() {
6+
super();
7+
}
8+
9+
public TronRuntimeException(String message) {
10+
super(message);
11+
}
12+
13+
public TronRuntimeException(String message, Throwable cause) {
14+
super(message, cause);
15+
}
16+
17+
public TronRuntimeException(Throwable cause) {
18+
super(cause);
19+
}
20+
21+
protected TronRuntimeException(String message, Throwable cause,
22+
boolean enableSuppression,
23+
boolean writableStackTrace) {
24+
super(message, cause, enableSuppression, writableStackTrace);
25+
}
26+
27+
28+
}

0 commit comments

Comments
 (0)