org.mockserver.httpclient.SocketConnectionException Maven / Gradle / Ivy
package org.mockserver.httpclient;
/**
* This exception indicates there was an error while trying to communicate over a socket
*
* @author jamesdbloom
*/
public class SocketConnectionException extends RuntimeException {
SocketConnectionException(String message, Throwable cause) {
super(message, cause);
}
SocketConnectionException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy