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 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 = "ResourceNotDestroyedFault", targetNamespace = "http://docs.oasis-open.org/wsn/br-2")
015
016 public class ResourceNotDestroyedFault extends Exception {
017 public static final long serialVersionUID = 20080919125855L;
018
019 private org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault;
020
021 public ResourceNotDestroyedFault() {
022 super();
023 }
024
025 public ResourceNotDestroyedFault(String message) {
026 super(message);
027 }
028
029 public ResourceNotDestroyedFault(String message, Throwable cause) {
030 super(message, cause);
031 }
032
033 public ResourceNotDestroyedFault(String message, org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault) {
034 super(message);
035 this.resourceNotDestroyedFault = resourceNotDestroyedFault;
036 }
037
038 public ResourceNotDestroyedFault(String message, org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType resourceNotDestroyedFault, Throwable cause) {
039 super(message, cause);
040 this.resourceNotDestroyedFault = resourceNotDestroyedFault;
041 }
042
043 public org.oasis_open.docs.wsn.br_2.ResourceNotDestroyedFaultType getFaultInfo() {
044 return this.resourceNotDestroyedFault;
045 }
046 }