All Packages Class Hierarchy This Package Previous Next Index
Class iaik.x509.CRLException
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
|
+----iaik.x509.CRLException
- public class CRLException
- extends Exception
This exception is thrown when there occurs a problem with CRLs.
-
CA_UNTRUSTED
-
-
CONSTRUCTION
-
-
INVALID_SIGNATURE
-
-
PARSE_ERROR
-
-
VERIFICATION
-
-
CRLException(int)
- Creates a new CRLException with a specific code.
-
CRLException(int, String)
- Creates a new CRLException using a code and a description.
-
getData()
- Returns a detailed description of the exception.
-
getExceptionCode()
- Returns the basic code of the exception.
-
getMessage()
- Returns the description of the basic code.
INVALID_SIGNATURE
public static final int INVALID_SIGNATURE
CA_UNTRUSTED
public static final int CA_UNTRUSTED
PARSE_ERROR
public static final int PARSE_ERROR
CONSTRUCTION
public static final int CONSTRUCTION
VERIFICATION
public static final int VERIFICATION
CRLException
public CRLException(int code,
String data)
- Creates a new CRLException using a code and a description.
- Parameters:
- code - shows the basic reason for this exception
- description - a more detailted description of the exception
CRLException
public CRLException(int code)
- Creates a new CRLException with a specific code.
- Parameters:
- code - shows the basic reason for this exception
getExceptionCode
public int getExceptionCode()
- Returns the basic code of the exception.
- Returns:
- the code of this exception
getData
public String getData()
- Returns a detailed description of the exception.
- Returns:
- a more detailted description of the exception
getMessage
public String getMessage()
- Returns the description of the basic code.
- Returns:
- a basic description of the exception
- Overrides:
- getMessage in class Throwable
All Packages Class Hierarchy This Package Previous Next Index