/* * JBossWS WS-Tools Generated Source * * Generation Date: Thu Jun 21 01:10:05 CEST 2007 * * This generated source code represents a derivative work of the input to * the generator that produced it. Consult the input for the copyright and * terms of use that apply to this source code. */ package net.programmera.ws.calculator; public class DivideZeroFaultType extends Exception{ private int offendingValue; private java.lang.String comment; public DivideZeroFaultType(int offendingValue, java.lang.String comment){ this.offendingValue=offendingValue; this.comment=comment; } public int getOffendingValue() { return offendingValue ;} public java.lang.String getComment() { return comment ;} }