io.github.jistol.remote.exception.RemoteException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jistol-spring-remote Show documentation
Show all versions of jistol-spring-remote Show documentation
You can set up Spring RMI and HttpInvoker in only two steps.
Step 1. Set @EnableRemoteType on application main.
Step 2. Add @RemoteType on your service(or component, resource ...)
The newest version!
package io.github.jistol.remote.exception;
/**
* Created by kimjh on 2017-04-27.
*/
public class RemoteException extends RuntimeException {
public RemoteException(String message){
super(message);
}
public RemoteException(Throwable e){
super(e);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy