All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy