View Javadoc
1 /************************************************************ 2 * Copyright * 3 * Portions of this software are Copyright (c) 1993 - 2002, * 4 * Chad Z. Hower (Kudzu) and the Indy Pit Crew * 5 * - http://www.nevrona.com/Indy/ * 6 ************************************************************/ 7 package org.indy.messages; 8 9 import org.indy.IndyException; 10 11 12 /*** 13 * DOCUMENT ME! 14 * 15 * @version $Revision$ 16 * @author $author$ 17 */ 18 public class AddressParseException extends IndyException { 19 /*** 20 * Creates a new AddressParseException object. 21 * 22 * @param e DOCUMENT ME! 23 */ 24 public AddressParseException(Exception e) { 25 super(e); 26 } 27 28 /*** 29 * Creates a new AddressParseException object. 30 * 31 * @param s DOCUMENT ME! 32 */ 33 public AddressParseException(String s) { 34 super(s); 35 } 36 }

This page was automatically generated by Maven