| 1 | /** |
| 2 | * IncompatibleVersionsException.java |
| 3 | * |
| 4 | * This file was auto-generated from WSDL |
| 5 | * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter. |
| 6 | */ |
| 7 | |
| 8 | package net.kwfgrid.gwes.client; |
| 9 | |
| 10 | public class IncompatibleVersionsException extends org.apache.axis.AxisFault { |
| 11 | public java.lang.Object fault; |
| 12 | public java.lang.Object getFault() { |
| 13 | return this.fault; |
| 14 | } |
| 15 | |
| 16 | public IncompatibleVersionsException() { |
| 17 | } |
| 18 | |
| 19 | public IncompatibleVersionsException(java.lang.Exception target) { |
| 20 | super(target); |
| 21 | } |
| 22 | |
| 23 | public IncompatibleVersionsException(java.lang.String message, java.lang.Throwable t) { |
| 24 | super(message, t); |
| 25 | } |
| 26 | |
| 27 | public IncompatibleVersionsException(java.lang.Object fault) { |
| 28 | this.fault = fault; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Writes the exception data to the faultDetails |
| 33 | */ |
| 34 | public void writeDetails(javax.xml.namespace.QName qname, org.apache.axis.encoding.SerializationContext context) throws java.io.IOException { |
| 35 | context.serialize(qname, null, fault); |
| 36 | } |
| 37 | } |