[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Initializes a new ManagementPackException object with the exception code that identifies the exception and the inner exception that caused the exception. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim exceptioncode As ManagementPackExceptionCode
Dim innerException As Exception

Dim instance As New ManagementPackException(exceptioncode, innerException)

Syntax

Visual Basic
Public Sub New ( _
		exceptioncode As ManagementPackExceptionCode, _
		innerException As Exception _
)
C#
public ManagementPackException (
		ManagementPackExceptionCode exceptioncode,
		Exception innerException
)
C++
public:
ManagementPackException (
		ManagementPackExceptionCode exceptioncode, 
		Exception^ innerException
)
J#
public ManagementPackException (
		ManagementPackExceptionCode exceptioncode, 
		Exception innerException
)
JScript
public function ManagementPackException (
		exceptioncode : ManagementPackExceptionCode, 
		innerException : Exception
)

Parameters

exceptioncode

The exception code that identifies the cause of the exception.

innerException

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

Platforms

Development Platforms

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

Target Platforms

Windows Server 2008,Windows Server 2003

See Also