com.github.ltsopensource.remoting.exception.RemotingCommandFieldCheckException Maven / Gradle / Ivy
package com.github.ltsopensource.remoting.exception;
/**
* @author Robert HG ([email protected]) on 8/16/14.
*/
public class RemotingCommandFieldCheckException extends Exception{
private static final long serialVersionUID = -3040346783583325400L;
public RemotingCommandFieldCheckException(String message) {
super(message);
}
public RemotingCommandFieldCheckException(String message, Throwable cause) {
super(message, cause);
}
}