001
002 package org.apache.servicemix.wsn.jaxws;
003
004 import javax.xml.ws.WebFault;
005 import org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType;
006
007 @WebFault(name = "UnacceptableTerminationTimeFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
008 public class UnacceptableTerminationTimeFault
009 extends Exception
010 {
011
012 private UnacceptableTerminationTimeFaultType faultInfo;
013
014 public UnacceptableTerminationTimeFault(String message, UnacceptableTerminationTimeFaultType faultInfo) {
015 super(message);
016 this.faultInfo = faultInfo;
017 }
018
019 public UnacceptableTerminationTimeFault(String message, UnacceptableTerminationTimeFaultType faultInfo, Throwable t) {
020 super(message, t);
021 this.faultInfo = faultInfo;
022 }
023
024 public UnacceptableTerminationTimeFaultType getFaultInfo() {
025 return faultInfo;
026 }
027
028 }