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