com.github.linshenkx.rpcnettycommon.exception.remoting.RemotingContextException Maven / Gradle / Ivy
package com.github.linshenkx.rpcnettycommon.exception.remoting;
public class RemotingContextException extends RemotingException {
public RemotingContextException(String message) {
super(message, null);
}
public RemotingContextException(String message, Throwable cause) {
super(message, cause);
}
}