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.2.1-fuse
009     * Thu Oct 09 22:15:46 EDT 2008
010     * Generated source version: 2.1.2.1-fuse
011     * 
012     */
013    
014    @WebFault(name = "UnacceptableTerminationTimeFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
015    public class UnacceptableTerminationTimeFault extends Exception {
016        public static final long serialVersionUID = 20081009221546L;
017        
018        private org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault;
019    
020        public UnacceptableTerminationTimeFault() {
021            super();
022        }
023        
024        public UnacceptableTerminationTimeFault(String message) {
025            super(message);
026        }
027        
028        public UnacceptableTerminationTimeFault(String message, Throwable cause) {
029            super(message, cause);
030        }
031    
032        public UnacceptableTerminationTimeFault(String message, org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault) {
033            super(message);
034            this.unacceptableTerminationTimeFault = unacceptableTerminationTimeFault;
035        }
036    
037        public UnacceptableTerminationTimeFault(String message, org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType unacceptableTerminationTimeFault, Throwable cause) {
038            super(message, cause);
039            this.unacceptableTerminationTimeFault = unacceptableTerminationTimeFault;
040        }
041    
042        public org.oasis_open.docs.wsn.b_2.UnacceptableTerminationTimeFaultType getFaultInfo() {
043            return this.unacceptableTerminationTimeFault;
044        }
045    }