org.nakedobjects.nos.remote.command.ConnectionException Maven / Gradle / Ivy
package org.nakedobjects.nos.remote.command;
import org.nakedobjects.noa.NakedObjectRuntimeException;
/**
* Indicates that a connection could not be established between the client and the server.
*/
public class ConnectionException extends NakedObjectRuntimeException {
private static final long serialVersionUID = 1L;
public ConnectionException() {
super();
}
public ConnectionException(final String msg) {
super(msg);
}
public ConnectionException(final Throwable cause) {
super(cause);
}
public ConnectionException(final String msg, final Throwable cause) {
super(msg, cause);
}
}
// Copyright (c) Naked Objects Group Ltd.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy