01: /*
02:
03: This software is OSI Certified Open Source Software.
04: OSI Certified is a certification mark of the Open Source Initiative.
05:
06: The license (Mozilla version 1.0) can be read at the MMBase site.
07: See http://www.MMBase.org/license
08:
09: */
10: package org.mmbase.framework;
11:
12: /**
13: * This exception gets thrown when something goes wrong in the Framework,
14: * such as when rendering or processing a component.
15: *
16: * @author Pierre van Rooden
17: * @version $Id: FrameworkException.java,v 1.3 2008/01/25 09:32:23 michiel Exp $
18: * @version MMBase-1.9
19: * @todo i18n?
20: */
21: public class FrameworkException extends Exception {
22:
23: //javadoc is inherited
24: public FrameworkException() {
25: super ();
26: }
27:
28: //javadoc is inherited
29: public FrameworkException(String message) {
30: super (message);
31: }
32:
33: //javadoc is inherited
34: public FrameworkException(Throwable cause) {
35: super (cause);
36: }
37:
38: //javadoc is inherited
39: public FrameworkException(String message, Throwable cause) {
40: super(message, cause);
41: }
42:
43: }
|