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