@author Hellohao @version 1.0 @date 2019/8/14 10:19
| 6 | * @date 2019/8/14 10:19 |
| 7 | */ |
| 8 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected