Exception.java 1.3 KB

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