com.ls.security.pki
Class SigningException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ls.BaseException
                    |
                    +--com.ls.security.pki.PKIBaseException
                          |
                          +--com.ls.security.pki.SigningException
All Implemented Interfaces:
Serializable

public class SigningException
extends PKIBaseException

This exception is thrown when there is error in signing process, for example, if the private key is not correct, if the password not correct, or if the signing process error.

Version:
$Revision: 1.3 $
Author:
Last modified by $Author: JBogenschuetz $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseException
innerThrowable
 
Constructor Summary
SigningException(String description)
          Creates a SigningException with the specified detail message.
SigningException(String description, Throwable throwable)
          Creates a SigningException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SigningException

public SigningException(String description)
Creates a SigningException with the specified detail message.
Parameters:
description - The detail message.

SigningException

public SigningException(String description,
                        Throwable throwable)
Creates a SigningException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.