KickJava   Java API By Example, From Geeks To Geeks.

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


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 approving,executing or requesting actions
17  * that have expired in the approval database
18  *
19  * @author Philip Vendil
20  * @version $Id: ApprovalRequestExpiredException.java,v 1.1 2006/07/29 11:26:35 herrvendil Exp $
21  */

22 public class ApprovalRequestExpiredException extends Exception JavaDoc {
23
24
25     public ApprovalRequestExpiredException() {
26         super();
27     }
28
29     public ApprovalRequestExpiredException(String JavaDoc message) {
30         super(message);
31     }
32
33 }
34
Popular Tags