DownloadFault_Exception.java
package org.apache.cxf;
import jakarta.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 4.2.0-SNAPSHOT-76f9ef641d05ffda30f7f61aa30cb15d6c530bd8
* 2025-12-05T06:22:03.879Z
* Generated source version: 4.2.0-SNAPSHOT
*/
@WebFault(name = "DownloadFault", targetNamespace = "http://cxf.apache.org/")
public class DownloadFault_Exception extends Exception {
private org.apache.cxf.DownloadFault faultInfo;
public DownloadFault_Exception() {
super();
}
public DownloadFault_Exception(String message) {
super(message);
}
public DownloadFault_Exception(String message, java.lang.Throwable cause) {
super(message, cause);
}
public DownloadFault_Exception(String message, org.apache.cxf.DownloadFault downloadFault) {
super(message);
this.faultInfo = downloadFault;
}
public DownloadFault_Exception(String message, org.apache.cxf.DownloadFault downloadFault, java.lang.Throwable cause) {
super(message, cause);
this.faultInfo = downloadFault;
}
public org.apache.cxf.DownloadFault getFaultInfo() {
return this.faultInfo;
}
}