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

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

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

/**
 * Thrown during any kind of protocol failures
 */
public class ProtocolException extends OvirtSdkRuntimeException {

    /**
     * 
     */
    private static final long serialVersionUID = 6566413883513675015L;

    /**
     * Constructs an ProtocolException without a detail message.
     */
    public ProtocolException() {
        super();
    }

    /**
     * @param message
     *            exception message
     * @param cause
     *            exception cause
     */
    public ProtocolException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * @param message
     *            exception message
     */
    public ProtocolException(String message) {
        super(message);
    }

    /**
     * @param cause
     *            exception cause
     */
    public ProtocolException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy