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

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

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

/**
 * Thrown during internals SDK failures
 */
public class MarshallingException extends OvirtSdkRuntimeException {

    private static final long serialVersionUID = -7751946172143424807L;

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy