KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > protocol > xkms > client > XKMSResponseSignatureException


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
14 package org.ejbca.core.protocol.xkms.client;
15
16 /**
17  * Exception throws in a XKMS service signature
18  * cannot be verified.
19  *
20  *
21  * @author Philip Vendil 2006 dec 20
22  *
23  * @version $Id: XKMSResponseSignatureException.java,v 1.1 2006/12/22 09:21:39 herrvendil Exp $
24  */

25
26 public class XKMSResponseSignatureException extends Exception JavaDoc {
27
28     public XKMSResponseSignatureException() {
29         super();
30     }
31
32     public XKMSResponseSignatureException(String JavaDoc arg0, Throwable JavaDoc arg1) {
33         super(arg0, arg1);
34     }
35
36     public XKMSResponseSignatureException(String JavaDoc arg0) {
37         super(arg0);
38     }
39
40     public XKMSResponseSignatureException(Throwable JavaDoc arg0) {
41         super(arg0);
42     }
43
44 }
45
Popular Tags