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

org.ovirt.engine.sdk.exceptions.SocketFactoryException Maven / Gradle / Ivy

There is a newer version: 3.6.10.0
Show newest version
package org.ovirt.engine.sdk.exceptions;

/**
 * Thrown during socket initialization failures
 */
public class SocketFactoryException extends OvirtSdkRuntimeException {

    /**
     * 
     */
    private static final long serialVersionUID = -6815039672561541599L;

    /**
     * @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);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy