Creates a
CopyC#
PkixCertPathValidatorException
with the specified detail message, cause, certification path, and index.

Namespace: Org.BouncyCastle.Pkix
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public PkixCertPathValidatorException(
	string message,
	Exception cause,
	PkixCertPath certPath,
	int index
)
Visual Basic
Public Sub New ( _
	message As String, _
	cause As Exception, _
	certPath As PkixCertPath, _
	index As Integer _
)
Visual C++
public:
PkixCertPathValidatorException(
	String^ message, 
	Exception^ cause, 
	PkixCertPath^ certPath, 
	int index
)

Parameters

message
Type: System..::..String
the detail message (or
CopyC#
null
if none)
cause
Type: System..::..Exception
the cause (or
CopyC#
null
if none)
certPath
Type: Org.BouncyCastle.Pkix..::..PkixCertPath
the certification path that was in the process of being validated when the error was encountered
index
Type: System..::..Int32
the index of the certificate in the certification path that

See Also