Index: lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java =================================================================== diff -u --- lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java (revision 0) +++ lams_common/src/java/org/lamsfoundation/lams/util/FileUtilException.java (revision 91bc1c05f05a88a471677f732b5be8e8fee83f4d) @@ -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); + } + +}