KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > services > ActionException


1 /*************************************************************************
2  * *
3  * EJBCA: The OpenSource Certificate Authority *
4  * *
5  * This software is free software; you can redistribute it and/or *
6  * modify it under the terms of the GNU Lesser General Public *
7  * License as published by the Free Software Foundation; either *
8  * version 2.1 of the License, or any later version. *
9  * *
10  * See terms of license at gnu.org. *
11  * *
12  *************************************************************************/

13 package org.ejbca.core.model.services;
14
15 /**
16  * Exception generated if a IAction.performAction calls failed.
17  *
18  * @author Philip Vendil 2006 sep 27
19  *
20  * @version $Id: ActionException.java,v 1.2 2006/10/01 17:46:25 herrvendil Exp $
21  */

22 public class ActionException extends Exception JavaDoc {
23
24     /**
25      * Exception generated if a IAction.performAction calls failed
26      * @param message
27      * @param cause
28      */

29     public ActionException(String JavaDoc message, Throwable JavaDoc cause) {
30         super(message, cause);
31     }
32
33     /**
34      * Exception generated if a IAction.performAction calls failed
35      * @param message
36      */

37     public ActionException(String JavaDoc message) {
38         super(message);
39     }
40
41 }
42
Popular Tags