KickJava   Java API By Example, From Geeks To Geeks.

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


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 throws when a service work method fails for som reason
17  * It should contain a message used in logging.
18  *
19  * @author Philip Vendil 2006 sep 28
20  *
21  * @version $Id: ServiceExecutionFailedException.java,v 1.3 2006/10/14 05:01:46 herrvendil Exp $
22  */

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