KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > model > approval > ApprovalRequestExecutionException


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.approval;
14
15 /**
16  * Exception throws after an administrator have approved a request and the
17  * request have been executed and something went wrong that the approval
18  * administrator should be notified of.
19  *
20  * @author Philip Vendil
21  * @version $Id: ApprovalRequestExecutionException.java,v 1.1 2006/07/29 11:26:35 herrvendil Exp $
22  */

23 public class ApprovalRequestExecutionException extends Exception JavaDoc {
24
25
26     public ApprovalRequestExecutionException(String JavaDoc message, Throwable JavaDoc cause) {
27         super(message, cause);
28     }
29
30     public ApprovalRequestExecutionException(String JavaDoc message) {
31         super(message);
32     }
33
34 }
35
Popular Tags