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