| InvalidResumeException.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.
*
* <p>
* <a href="InvalidResumeException.java.html"><i>View Source</i></a>
* </p>
*
* @author <a href="mailto:matt@raibledesigns.com">Matt Raible</a>
* @version $Revision: 1.3 $ $Date: 2004/03/31 13:04:24 $
*/
public class InvalidResumeException extends ModuleException {
//~ Constructors ===========================================================
/**
* Construct a new instance of this exception
*/
public InvalidResumeException(String badId) {
super("errors.invalid.resume", badId);
}
}
| InvalidResumeException.java |