remote.server.Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote4j Show documentation
Show all versions of remote4j Show documentation
Thin functional layer on top of RMI.
package remote.server;
@SuppressWarnings("serial")
public class Exception extends Return {
public Exception(final Throwable value, final long relatesTo) {
super(value, relatesTo);
}
@Override
public Throwable getValue() {
return (Throwable)super.getValue();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy