com.dstc.security.ssl
Class CertPathValidationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.security.GeneralSecurityException
                    |
                    +--com.dstc.security.ssl.CertPathValidationException

public class CertPathValidationException
extends GeneralSecurityException

Signals that a cert path was deemed invalid

See Also:
Serialized Form

Constructor Summary
CertPathValidationException()
          Constructs a CertPathValidationException with no detail message.
CertPathValidationException(String msg)
          Constructs a CertPathValidationException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CertPathValidationException

public CertPathValidationException()
Constructs a CertPathValidationException with no detail message. A detail message is a String that describes this particular exception.

CertPathValidationException

public CertPathValidationException(String msg)
Constructs a CertPathValidationException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
msg - the detail message.