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

rpcfy.RPCNotSupportedException Maven / Gradle / Ivy

Go to download

RPCfy upgrades your normal java interface to be capable of doing RPC (Remote Procedure Call).

There is a newer version: 1.0.23
Show newest version
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