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