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