Index: lams_learning/src/java/org/lamsfoundation/lams/learning/export/ExportPortfolioException.java =================================================================== RCS file: /usr/local/cvsroot/lams_learning/src/java/org/lamsfoundation/lams/learning/export/ExportPortfolioException.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_learning/src/java/org/lamsfoundation/lams/learning/export/ExportPortfolioException.java 14 Sep 2005 00:53:02 -0000 1.1 @@ -0,0 +1,46 @@ +/* + * Created on Sep 6, 2005 + * + * TODO To change the template for this generated file go to + * Window - Preferences - Java - Code Style - Code Templates + */ +package org.lamsfoundation.lams.learning.export; + +/** + * @author mtruong + * + * TODO To change the template for this generated type comment go to + * Window - Preferences - Java - Code Style - Code Templates + */ +public class ExportPortfolioException extends java.lang.RuntimeException { + + public ExportPortfolioException() + { + } + + public ExportPortfolioException(String msg) + { + super(msg); + } + + /** + * Constructor for wrapping the throwable object + * @param cause + */ + public ExportPortfolioException(Throwable cause) + { + super(cause); + } + + /** + * Constructor for wrapping both the customized error message and + * throwable exception object. + * @param message + * @param cause + */ + public ExportPortfolioException(String message, Throwable cause) + { + super(message, cause); + } + +}