colesico.framework.rpc.clientapi.RpcErrorHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of colesico-rpc Show documentation
Show all versions of colesico-rpc Show documentation
Colesico framework Remote Procedure Call for Services
The newest version!
package colesico.framework.rpc.clientapi;
import colesico.framework.rpc.RpcError;
public interface RpcErrorHandler {
/**
* Create exception from error
*/
RuntimeException createException(E error);
}