1 2 package org.kuali.ole.select.testing; 3 4 import javax.xml.bind.annotation.XmlAccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 8 9 /** 10 * <p>Java class for Exception complex type. 11 * <p/> 12 * <p>The following schema fragment specifies the expected content contained within this class. 13 * <p/> 14 * <pre> 15 * <complexType name="Exception"> 16 * <complexContent> 17 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 18 * <sequence> 19 * <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 20 * </sequence> 21 * </restriction> 22 * </complexContent> 23 * </complexType> 24 * </pre> 25 */ 26 @XmlAccessorType(XmlAccessType.FIELD) 27 @XmlType(name = "Exception", propOrder = { 28 "message" 29 }) 30 public class WSException { 31 32 protected String message; 33 34 /** 35 * Gets the value of the message property. 36 * 37 * @return possible object is 38 * {@link String } 39 */ 40 public String getMessage() { 41 return message; 42 } 43 44 /** 45 * Sets the value of the message property. 46 * 47 * @param value allowed object is 48 * {@link String } 49 */ 50 public void setMessage(String value) { 51 this.message = value; 52 } 53 54 }