Initializes a new instance of the CertificateOperationException class based on a certificate serial number, error message, and exception.
Namespace: Microsoft.Clm.Shared.CertificateServer
Assembly: Microsoft.Clm.Shared (in microsoft.clm.shared.dll)

Usage

Visual Basic
Dim serial As String
Dim message As String
Dim innerException As Exception

Dim instance As New CertificateOperationException(serial, message, innerException)

Syntax

Visual Basic
Public Sub New ( _
		serial As String, _
		message As String, _
		innerException As Exception _
)
C#
public CertificateOperationException (
		string serial,
		string message,
		Exception innerException
)
C++
public:
CertificateOperationException (
		String^ serial, 
		String^ message, 
		Exception^ innerException
)
J#
public CertificateOperationException (
		String serial, 
		String message, 
		Exception innerException
)
JScript
public function CertificateOperationException (
		serial : String, 
		message : String, 
		innerException : Exception
)

Parameters

serial

Serial number of the certificate associated with the error.

message

A String that contains information about the exception.

innerException

An Exception.

Platforms

Development Platforms

Windows 2008 x64 Edition

Target Platforms

Windows XP SP3, Windows Vista SP1+, Windows 7, Windows Server 2008, Windows Server 2008 R2

See Also