UserFault Constructor (String, Exception)

 

Initializes a new instance of the UserFault class with the specified error message and a reference to the inner exception that is the cause of this exception.

Namespace:   Microsoft.WindowsServerSolutions.Users
Assembly:  UserObjectModel (in UserObjectModel.dll)

Syntax

public UserFault(
    string msg,
    Exception e
)
public:
UserFault(
    String^ msg,
    Exception^ e
)
Public Sub New (
    msg As String,
    e As Exception
)

Parameters

  • msg
    Type: System.String

    The error message that explains the reason for the exception.

  • e
    Type: System.Exception

    The inner exception that is the cause of this exception.

See Also

UserFault Overload
UserFault Class
Microsoft.WindowsServerSolutions.Users Namespace

Return to top