/* $Log$ Revision 1.2 2003/05/02 07:58:45 heto Changed the package structure from se.prevas.arexis.XYZ to se.arexis.agdb.XYZ Modified configuration and source files according to package change. Revision 1.1.1.1 2002/10/16 18:14:07 heto Import of aGDB 1.5 L3 from Prevas CVS-tree. This version of aGDB is migrated to Tomcat from JServ by Tobias Hermansson Revision 1.1 2001/04/24 09:34:20 frob Moved file import classes to new package se.prevas.arexis.util.FileImport, caused updates in several files. Revision 1.2 2001/04/24 06:31:47 frob Checkin after merging frob_fileparser branch. Revision 1.1.2.1 2001/03/21 09:14:25 frob File created and added to cvs */ package se.arexis.agdb.util.FileImport; /** * The InputDataFileException is thrown whenever there is something wrong * with the input data file. * * @author frob * @see Exception */ public class InputDataFileException extends Exception { /** * Creates a new InputDataFileException instance. * */ public InputDataFileException() { this("InputDataFileException"); } /** * Creates a new InputDataFileException instance with a descriptive text. * * @param errorMsg The text to display with the exception. */ public InputDataFileException(String errorMsg) { super(errorMsg); } }