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

sg.dex.starfish.exception.RemoteException Maven / Gradle / Ivy

package sg.dex.starfish.exception;

/**
 * Class representing an unexpected failure in a remote operation
 *
 * @author Mike
 */
@SuppressWarnings("serial")
public class RemoteException extends RuntimeException {

    public RemoteException(String message) {
        super(message);
    }

    public RemoteException(String message, Throwable e) {
        super(message, e);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy