
com.vmware.vim25.UserNotFoundFaultMsg 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.vim25;
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 = "UserNotFoundFault", targetNamespace = "urn:vim25")
public class UserNotFoundFaultMsg
extends Exception
{
/**
* Java type that goes as soapenv:Fault detail element.
*
*/
private UserNotFound faultInfo;
/**
*
* @param message
* @param faultInfo
*/
public UserNotFoundFaultMsg(String message, UserNotFound faultInfo) {
super(message);
this.faultInfo = faultInfo;
}
/**
*
* @param message
* @param faultInfo
* @param cause
*/
public UserNotFoundFaultMsg(String message, UserNotFound faultInfo, Throwable cause) {
super(message, cause);
this.faultInfo = faultInfo;
}
/**
*
* @return
* returns fault bean: com.vmware.vim25.UserNotFound
*/
public UserNotFound getFaultInfo() {
return faultInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy