
com.vmware.vim.NotFoundFaultMsg Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.ws.WebFault;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.1.3-b02-
* Generated source version: 2.1
*
*/
@WebFault(name = "NotFoundFault", targetNamespace = "urn:vim2")
public class NotFoundFaultMsg
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private NotFound faultInfo;
/**
*
* @param message
* @param faultInfo
*/
public NotFoundFaultMsg(String message, NotFound faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public NotFoundFaultMsg(String message, NotFound faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: com.vmware.vim.NotFound
*/
public NotFound getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy