001    package calhoun.util;
002    
003    /** Exception type for data errors.  It is unchecked to simplify error handling in other Java code.
004     * It is a wrapper for problems that are generally attributable to bad data in the database.  It is a subclass of ConfigException.
005     * You should assume error messages will be viewed by the user.
006     */
007    public class DataException extends ConfigException {
008    
009            private static final long serialVersionUID = 1993656669514976055L;
010    
011            public DataException(String arg0) {
012                    super(arg0);
013            }
014    
015            public DataException(String arg0, Throwable arg1) {
016                    super(arg0, arg1);
017            }
018    
019            public DataException(Throwable arg0) {
020                    super(arg0);
021            }
022    }