Java in a Nutshell, 5th Edition [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Java in a Nutshell, 5th Edition [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



Signals
a problem while validating a certificate chain with a
CertPathValidator. getCertPath(
)
returns the CertPath object that was
being validated, and getIndex( ) returns the index
within the path of the certificate that caused the exception (or -1
if that information is not available).


Figure 14-57. java.security.cert.CertPathValidatorException

public class 

CertPathValidatorException
extends java.security.GeneralSecurityException {
// Public Constructors
public

CertPathValidatorException ( );
public

CertPathValidatorException (Throwable

cause );
public

CertPathValidatorException (String

msg );
public

CertPathValidatorException (String

msg , Throwable

cause );
public

CertPathValidatorException (String

msg , Throwable

cause ,
CertPath

certPath , int

index );
// Public Instance Methods
public CertPath

getCertPath ( ); default:null
public int

getIndex ( ); default:-1
}


Thrown By


CertPathValidator.validate( ),
CertPathValidatorSpi.engineValidate( ),
PKIXCertPathChecker.{check( ), init(
)}


/ 1191