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

org.openstack4j.api.exceptions.ConnectionException Maven / Gradle / Ivy

There is a newer version: 3.11
Show newest version
package org.openstack4j.api.exceptions;

/**
 * An exception which is thrown when a connection/IO exception has occurred with the remote host
 * 
 * @author Jeremy Unruh
 */
public class ConnectionException extends ResponseException {

	private static final long serialVersionUID = 1L;

	public ConnectionException(String message, int status, Throwable cause) {
		super(message, status, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy