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