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 Apache CXF 2.2.0.0-fuse
009 * Tue May 05 21:33:19 EDT 2009
010 * Generated source version: 2.2.0.0-fuse
011 *
012 */
013
014 @WebFault(name = "UnableToDestroySubscriptionFault", targetNamespace = "http://docs.oasis-open.org/wsn/b-2")
015 public class UnableToDestroySubscriptionFault extends Exception {
016 public static final long serialVersionUID = 20090505213319L;
017
018 private org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType unableToDestroySubscriptionFault;
019
020 public UnableToDestroySubscriptionFault() {
021 super();
022 }
023
024 public UnableToDestroySubscriptionFault(String message) {
025 super(message);
026 }
027
028 public UnableToDestroySubscriptionFault(String message, Throwable cause) {
029 super(message, cause);
030 }
031
032 public UnableToDestroySubscriptionFault(String message, org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType unableToDestroySubscriptionFault) {
033 super(message);
034 this.unableToDestroySubscriptionFault = unableToDestroySubscriptionFault;
035 }
036
037 public UnableToDestroySubscriptionFault(String message, org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType unableToDestroySubscriptionFault, Throwable cause) {
038 super(message, cause);
039 this.unableToDestroySubscriptionFault = unableToDestroySubscriptionFault;
040 }
041
042 public org.oasis_open.docs.wsn.b_2.UnableToDestroySubscriptionFaultType getFaultInfo() {
043 return this.unableToDestroySubscriptionFault;
044 }
045 }