1 /* $Id: CRLException.java,v 1.1 2000/08/07 17:54:53 edwin Exp $
2  *
3  * Copyright (C) 2000 The Cryptix Foundation Limited. All rights reserved.
4  *
5  * Use, modification, copying and distribution of this software is subject
6  * the terms and conditions of the Cryptix General Licence. You should have
7  * received a copy of the Cryptix General Licence along with this library;
8  * if not, you can download a copy from http://www.cryptix.org/ .
9  */
10 package java.security.cert;
11 
12 
13 import java.security.GeneralSecurityException;
14 
15 
16 /**
17  * Base class of CRL related exceptions.
18  *
19  * @version $Revision: 1.1 $
20  * @author  Edwin Woudt (edwin@cryptix.org)
21  * @author  Jeroen C. van Gelderen (gelderen@cryptix.org)
22  */
23 public class CRLException extends GeneralSecurityException {
24 
CRLException()25     public CRLException() {
26         super();
27     }
28 
29 
CRLException(String msg)30     public CRLException(String msg) {
31         super(msg);
32     }
33 }
34