26 lines
429 B
Java
26 lines
429 B
Java
|
package com.czsj.rpc.util;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @Author: czsj
|
||
|
* @Date: 2022/9/16 11:14
|
||
|
* @Description: 自定义异常类
|
||
|
**/
|
||
|
public class XxlRpcException extends RuntimeException {
|
||
|
|
||
|
private static final long serialVersionUID = 42L;
|
||
|
|
||
|
public XxlRpcException(String msg) {
|
||
|
super(msg);
|
||
|
}
|
||
|
|
||
|
public XxlRpcException(String msg, Throwable cause) {
|
||
|
super(msg, cause);
|
||
|
}
|
||
|
|
||
|
public XxlRpcException(Throwable cause) {
|
||
|
super(cause);
|
||
|
}
|
||
|
|
||
|
}
|