org.ovirt.engine.sdk.exceptions.SocketFactoryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ovirt-engine-sdk-java Show documentation
Show all versions of ovirt-engine-sdk-java Show documentation
This is Java SDK for the oVirt virtualization
package org.ovirt.engine.sdk.exceptions;
/**
* Thrown during socket initialization failures
*/
public class SocketFactoryException extends OvirtSdkRuntimeException {
/**
*
*/
private static final long serialVersionUID = -6815039672561541599L;
/**
* Constructs an SocketFactoryException
without a detail message.
*/
public SocketFactoryException() {
super();
}
/**
* @param message
* exception message
* @param cause
* exception cause
*/
public SocketFactoryException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param message
* exception message
*/
public SocketFactoryException(String message) {
super(message);
}
/**
* @param cause
* exception cause
*/
public SocketFactoryException(Throwable cause) {
super(cause);
}
}