1 2 package org.objectweb.rentacar.services.client; 3 4 import javax.xml.ws.WebFault; 5 import org.objectweb.rentacar.services.client.DAOException; 6 import org.objectweb.rentacar.services.client.DAOException_Exception; 7 8 9 15 @WebFault(name = "DAOException", targetNamespace = "http://reservation.services.agency.rentacar.objectweb.org/") 16 public class DAOException_Exception 17 extends Exception 18 { 19 20 24 private DAOException faultInfo; 25 26 31 public DAOException_Exception(String message, DAOException faultInfo) { 32 super(message); 33 this.faultInfo = faultInfo; 34 } 35 36 42 public DAOException_Exception(String message, DAOException faultInfo, Throwable cause) { 43 super(message, cause); 44 this.faultInfo = faultInfo; 45 } 46 47 52 public DAOException getFaultInfo() { 53 return faultInfo; 54 } 55 56 } 57 | Popular Tags |