org.ovirt.engine.sdk.exceptions.ProtocolException 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 any kind of protocol failures
*/
public class ProtocolException extends OvirtSdkRuntimeException {
/**
*
*/
private static final long serialVersionUID = 6566413883513675015L;
/**
* @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);
}
}