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.io; 8 9 import org.indy.IndyException; 10 11 12 /*** 13 * 14 * 15 *@author 16 *@version 1.0 17 */ 18 public class IndyIOException extends IndyException { 19 /*** 20 * Constructor for the IdIOException object 21 * 22 *@param e Description of the Parameter 23 */ 24 public IndyIOException(String msg) { 25 super(msg); 26 } 27 28 /*** 29 * Creates a new IndyIOException object. 30 * 31 * @param e DOCUMENT ME! 32 */ 33 public IndyIOException(Exception e) { 34 super(e); 35 } 36 37 /*** 38 * Constructor for the IdIOException object 39 * 40 *@param e Description of the Parameter 41 *@param msg Description of the Parameter 42 */ 43 public IndyIOException(Exception e, String msg) { 44 super(e, msg); 45 } 46 }

This page was automatically generated by Maven