Index: lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java 13 Sep 2005 01:55:04 -0000 1.1 @@ -0,0 +1,44 @@ +/* + * Created on Sep 8, 2005 + * + * TODO To change the template for this generated file go to + * Window - Preferences - Java - Code Style - Code Templates + */ +package org.lamsfoundation.lams.util; + +/** + * @author mtruong + * + * TODO To change the template for this generated type comment go to + * Window - Preferences - Java - Code Style - Code Templates + */ +public class FileUtilException extends Exception{ + + public FileUtilException() + { + super(); + } + + /** + * @param message + */ + public FileUtilException(String message) { + super(message); + } + + /** + * @param cause + */ + public FileUtilException(Throwable cause) { + super(cause); + } + + /** + * @param message + * @param cause + */ + public FileUtilException(String message, Throwable cause) { + super(message, cause); + } + +}