org.iartisan.runtime.exception.ApiRemoteException Maven / Gradle / Ivy
The newest version!
package org.iartisan.runtime.exception;
import org.iartisan.runtime.api.res.BaseRes;
import java.rmi.RemoteException;
/**
*
* 远程连接异常
*
* @author King
* @since 2018/1/23
*/
public class ApiRemoteException extends RemoteException {
public ApiRemoteException() {
super();
}
public ApiRemoteException(BaseRes res) {
super(res.getCode() + ":" + res.getMsg());
}
}