| GeneralException.java |
package org.appfuse.webapp.action;
import org.apache.struts.util.ModuleException;
/**
* This exception is designed to catch all exceptions and build a list of
* exceptions that have occurred.
*/
public class GeneralException extends ModuleException {
//~ Constructors ===========================================================
/**
* Construct a new instance of this exception
*/
public GeneralException() {
super("errors.general");
}
}
| GeneralException.java |