001    
002    package org.oasis_open.docs.wsn.brw_2;
003    
004    import javax.xml.ws.WebFault;
005    
006    
007    /**
008     * This class was generated by Apache CXF 2.2.0.0-fuse
009     * Tue May 05 21:33:18 EDT 2009
010     * Generated source version: 2.2.0.0-fuse
011     * 
012     */
013    
014    @WebFault(name = "ResourceNotDestroyedFault", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
015    public class ResourceNotDestroyedFault extends Exception {
016        public static final long serialVersionUID = 20090505213318L;
017        
018        private org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault;
019    
020        public ResourceNotDestroyedFault() {
021            super();
022        }
023        
024        public ResourceNotDestroyedFault(String message) {
025            super(message);
026        }
027        
028        public ResourceNotDestroyedFault(String message, Throwable cause) {
029            super(message, cause);
030        }
031    
032        public ResourceNotDestroyedFault(String message, org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault) {
033            super(message);
034            this.resourceNotDestroyedFault = resourceNotDestroyedFault;
035        }
036    
037        public ResourceNotDestroyedFault(String message, org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault, Throwable cause) {
038            super(message, cause);
039            this.resourceNotDestroyedFault = resourceNotDestroyedFault;
040        }
041    
042        public org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType getFaultInfo() {
043            return this.resourceNotDestroyedFault;
044        }
045    }