1
2
3
4 package org.flowfuse.base.frontend;
5
6 import org.apache.commons.logging.Log;
7 import org.apache.commons.logging.LogFactory;
8 import org.springframework.core.NestedCheckedException;
9
10 /***
11 * @author <a href="stefan@flowfuse.org">Stefan Kleineikenscheidt</a>,
12 * Flowfuse.org
13 * @version $Id: FrontendException.java,v 1.1 2005/11/20 15:02:06 skleinei Exp $
14 */
15 public class FrontendException extends NestedCheckedException {
16
17 /***
18 * RCS ID
19 */
20 public final static String rcsid = "$Id: FrontendException.java,v 1.1 2005/11/20 15:02:06 skleinei Exp $";
21
22 /***
23 * Logger
24 */
25 protected final Log logger = LogFactory.getLog(this.getClass());
26
27 public FrontendException(String s) {
28 super(s);
29 }
30
31 public FrontendException(String s, Throwable throwable) {
32 super(s, throwable);
33 }
34 }
35
36