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

com.vmware.vim25.TimedoutFaultMsg Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.ws.WebFault;


/**
 * This class was generated by Apache CXF 3.1.6
 * 2017-05-25T13:48:07.049+05:30
 * Generated source version: 3.1.6
 */

@WebFault(name = "TimedoutFault", targetNamespace = "urn:vim25")
public class TimedoutFaultMsg extends Exception {
    public static final long serialVersionUID = 1L;
    
    private com.vmware.vim25.Timedout timedoutFault;

    public TimedoutFaultMsg() {
        super();
    }
    
    public TimedoutFaultMsg(String message) {
        super(message);
    }
    
    public TimedoutFaultMsg(String message, Throwable cause) {
        super(message, cause);
    }

    public TimedoutFaultMsg(String message, com.vmware.vim25.Timedout timedoutFault) {
        super(message);
        this.timedoutFault = timedoutFault;
    }

    public TimedoutFaultMsg(String message, com.vmware.vim25.Timedout timedoutFault, Throwable cause) {
        super(message, cause);
        this.timedoutFault = timedoutFault;
    }

    public com.vmware.vim25.Timedout getFaultInfo() {
        return this.timedoutFault;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy