rpcfy.RPCNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rpcfy-annotations Show documentation
Show all versions of rpcfy-annotations Show documentation
RPCfy upgrades your normal java interface to be capable of doing RPC (Remote Procedure Call).
package rpcfy;
/**
* Thrown when a method is called in the {@link RPCProxy} that is marked as not supporting RPC
*/
public class RPCNotSupportedException extends RuntimeException {
public RPCNotSupportedException() {
super("Method doesn't support RPC");
}
public RPCNotSupportedException(String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy