RMPackagingException Constructors

Definition

Overloads

RMPackagingException()

Initializes a new instance of the RMPackagingException class.

RMPackagingException(String)

Initializes a new instance of the RMPackagingException class.

RMPackagingException(String, Exception)

Initializes a new instance of the RMPackagingException class.

RMPackagingException()

Initializes a new instance of the RMPackagingException class.

public RMPackagingException ();
Public Sub New ()

Applies to

RMPackagingException(String)

Initializes a new instance of the RMPackagingException class.

public RMPackagingException (string message);
new Microsoft.Media.Drm.RMPackagingException : string -> Microsoft.Media.Drm.RMPackagingException
Public Sub New (message As String)

Parameters

message
String

Text message associated with this exception.

Applies to

RMPackagingException(String, Exception)

Initializes a new instance of the RMPackagingException class.

public RMPackagingException (string message, Exception inner);
new Microsoft.Media.Drm.RMPackagingException : string * Exception -> Microsoft.Media.Drm.RMPackagingException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

Text message associated with this exception.

inner
Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

Applies to