1 /*2 * Created on 24.02.20043 *4 * To change the template for this generated file go to5 * Window>Preferences>Java>Code Generation>Code and Comments6 */7 package test.wsee;8 9 /**10 * @author Jung11 * @wsee.jaxrpc-mapping local-part="TestException"12 */13 14 public class TestException extends Exception {15 16 /**17 * @wsee.constructor-element name="message"18 * @wsee.constructor-element name="reason"19 * @param message20 * @param reason21 */22 public TestException(String message, String reason) {23 super(message);24 }25 }26