KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mmbase > applications > editwizard > WizardException


1 /*
2
3 This software is OSI Certified Open Source Software.
4 OSI Certified is a certification mark of the Open Source Initiative.
5
6 The license (Mozilla version 1.0) can be read at the MMBase site.
7 See http://www.MMBase.org/license
8
9 */

10 package org.mmbase.applications.editwizard;
11
12 /**
13  * This exception is thrown when an error occurs in the EditWizards
14  *
15  * @author Kars Veling
16  * @since MMBase-1.6
17  * @version $Id: WizardException.java,v 1.3 2003/08/29 09:34:39 pierre Exp $
18  */

19 public class WizardException extends java.lang.Exception JavaDoc {
20
21     //javadoc is inherited
22
public WizardException() {
23         super();
24     }
25
26     //javadoc is inherited
27
public WizardException(String JavaDoc message) {
28         super(message);
29     }
30
31     //javadoc is inherited
32
public WizardException(Throwable JavaDoc cause) {
33         super(cause);
34     }
35
36     //javadoc is inherited
37
public WizardException(String JavaDoc message, Throwable JavaDoc cause) {
38         super(message, cause);
39     }
40 }
41
42
43
Popular Tags