1 2 package org.objectweb.rentacar.services.client; 3 4 import javax.xml.bind.annotation.AccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 import org.objectweb.rentacar.services.client.DAOException; 8 9 10 29 @XmlAccessorType(AccessType.FIELD) 30 @XmlType(name = "DAOException", propOrder = { 31 "message" 32 }) 33 public class DAOException { 34 35 protected String message; 36 37 45 public String getMessage() { 46 return message; 47 } 48 49 57 public void setMessage(String value) { 58 this.message = value; 59 } 60 61 } 62 | Popular Tags |