package mkpackage.jaxws;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* This class was generated by Apache CXF 2.6.1
* Thu Sep 13 10:17:33 CEST 2012
* Generated source version: 2.6.1
*/
@XmlRootElement(name = "MyCustomException", namespace = "http://mkpackage/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MyCustomException", namespace = "http://mkpackage/", propOrder = {"category", "details", "message"})
public class MyCustomExceptionBean {
private java.lang.String category;
private java.lang.String details;
private java.lang.String message;
public java.lang.String getCategory() {
return this.category;
}
public void setCategory(java.lang.String newCategory) {
this.category = newCategory;
}
public java.lang.String getDetails() {
return this.details;
}
public void setDetails(java.lang.String newDetails) {
this.details = newDetails;
}
public java.lang.String getMessage() {
return this.message;
}
public void setMessage(java.lang.String newMessage) {
this.message = newMessage;
}
}