MCPcopy Create free account
hub / github.com/Hello-hao/Tbed / CodeException

Class CodeException

src/main/java/cn/hellohao/exception/CodeException.java:8–28  ·  view source on GitHub ↗

@author Hellohao @version 1.0 @date 2019/8/14 10:19

Source from the content-addressed store, hash-verified

6 * @date 2019/8/14 10:19
7 */
8public class CodeException extends RuntimeException {
9
10 public CodeException() {
11 }
12
13 public CodeException(String message) {
14 super(message);
15 }
16
17 public CodeException(String message, Throwable cause) {
18 super(message, cause);
19 }
20
21 public CodeException(Throwable cause) {
22 super(cause);
23 }
24
25 public CodeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
26 super(message, cause, enableSuppression, writableStackTrace);
27 }
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected