com.github.fartherp.framework.remoting.exception.RemotingCommandException Maven / Gradle / Ivy
/*
* Copyright (c) 2017. CK. All rights reserved.
*/
package com.github.fartherp.framework.remoting.exception;
/**
* @author hyssop
*/
public class RemotingCommandException extends RemotingException {
private static final long serialVersionUID = -6061365915274953096L;
public RemotingCommandException(String message) {
super(message, null);
}
public RemotingCommandException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy