Initializes a new ManagementPackException object. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.OperationsManager.Common (in microsoft.enterprisemanagement.operationsmanager.common.dll)

Usage

Visual Basic
Dim exceptioncode As ManagementPackExceptionCode
Dim innerException As Exception
Dim parameters As String()

Dim instance As New ManagementPackException(exceptioncode, innerException, parameters)

Syntax

Visual Basic
Public Sub New ( _
		exceptioncode As ManagementPackExceptionCode, _
		innerException As Exception, _
		ParamArray parameters As String() _
)
C#
public ManagementPackException (
		ManagementPackExceptionCode exceptioncode,
		Exception innerException,
		params string[] parameters
)
C++
public:
ManagementPackException (
		ManagementPackExceptionCode exceptioncode, 
		Exception^ innerException, 
		... array<String^>^ parameters
)
J#
public ManagementPackException (
		ManagementPackExceptionCode exceptioncode, 
		Exception innerException, 
		String[] parameters
)
JScript
public function ManagementPackException (
		exceptioncode : ManagementPackExceptionCode, 
		innerException : Exception, 
		... parameters : String[]
)

Parameters

exceptioncode

The exception code that identifies the cause of the exception.

innerException

The inner exception that describes the cause of the current exception.

parameters

The parameters that are used to replace variables in the exception message.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also