001
002 package org.oasis_open.docs.wsn.bw_2;
003
004 import javax.xml.ws.WebFault;
005
006
007 /**
008 * This class was generated by IONA FUSE Services Framework 2.1.0.0-fuse
009 * Fri Sep 19 12:58:55 NDT 2008
010 * Generated source version: 2.1.0.0-fuse
011 *
012 */
013
014 @WebFault(name = "UnacceptableTerminationTimeFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
015
016 public class UnacceptableTerminationTimeFault extends Exception {
017 public static final long serialVersionUID = 20080919125855L;
018
019 private org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault;
020
021 public UnacceptableTerminationTimeFault() {
022 super();
023 }
024
025 public UnacceptableTerminationTimeFault(String message) {
026 super(message);
027 }
028
029 public UnacceptableTerminationTimeFault(String message, Throwable cause) {
030 super(message, cause);
031 }
032
033 public UnacceptableTerminationTimeFault(String message, org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault) {
034 super(message);
035 this.unacceptableTerminationTimeFault = unacceptableTerminationTimeFault;
036 }
037
038 public UnacceptableTerminationTimeFault(String message, org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault, Throwable cause) {
039 super(message, cause);
040 this.unacceptableTerminationTimeFault = unacceptableTerminationTimeFault;
041 }
042
043 public org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType getFaultInfo() {
044 return this.unacceptableTerminationTimeFault;
045 }
046 }