com.greenbird.xmlns.schema.logger.LoggerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-formatter-components-mule-cxf Show documentation
Show all versions of xml-formatter-components-mule-cxf Show documentation
Component for logging of pretty-printed XML in Mule CXF endpoints.
The newest version!
package com.greenbird.xmlns.schema.logger;
import javax.xml.ws.WebFault;
/**
* This class was generated by Apache CXF 2.5.1
* 2015-04-22T09:08:31.654+02:00
* Generated source version: 2.5.1
*/
@WebFault(name = "errorResponse", targetNamespace = "http://xmlns.greenbird.com/schema/logger")
public class LoggerException extends Exception {
private com.greenbird.xmlns.schema.logger.ErrorResponse errorResponse;
public LoggerException() {
super();
}
public LoggerException(String message) {
super(message);
}
public LoggerException(String message, Throwable cause) {
super(message, cause);
}
public LoggerException(String message, com.greenbird.xmlns.schema.logger.ErrorResponse errorResponse) {
super(message);
this.errorResponse = errorResponse;
}
public LoggerException(String message, com.greenbird.xmlns.schema.logger.ErrorResponse errorResponse, Throwable cause) {
super(message, cause);
this.errorResponse = errorResponse;
}
public com.greenbird.xmlns.schema.logger.ErrorResponse getFaultInfo() {
return this.errorResponse;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy