com.hyf.hotrefresh.remoting.exception.RpcException Maven / Gradle / Ivy
package com.hyf.hotrefresh.remoting.exception;
/**
* @author baB_hyf
* @date 2022/05/15
*/
public class RpcException extends RuntimeException {
public RpcException(String message) {
super(message);
}
public RpcException(String message, Throwable cause) {
super(message, cause);
}
}