RestartComputerTimeoutException Constructors

Definition

Overloads

RestartComputerTimeoutException()

Construct a RestartComputerTimeoutException

RestartComputerTimeoutException(String)

Constructs a RestartComputerTimeoutException

RestartComputerTimeoutException(String, Exception)

Constructs a RestartComputerTimeoutException

RestartComputerTimeoutException()

Construct a RestartComputerTimeoutException

public:
 RestartComputerTimeoutException();
public:
 RestartComputerTimeoutException();
 RestartComputerTimeoutException();
public RestartComputerTimeoutException ();
Public Sub New ()

Applies to

RestartComputerTimeoutException(String)

Constructs a RestartComputerTimeoutException

public:
 RestartComputerTimeoutException(System::String ^ message);
public:
 RestartComputerTimeoutException(Platform::String ^ message);
 RestartComputerTimeoutException(std::wstring const & message);
public RestartComputerTimeoutException (string message);
new Microsoft.PowerShell.Commands.RestartComputerTimeoutException : string -> Microsoft.PowerShell.Commands.RestartComputerTimeoutException
Public Sub New (message As String)

Parameters

message
String

The message used in the exception.

Applies to

RestartComputerTimeoutException(String, Exception)

Constructs a RestartComputerTimeoutException

public:
 RestartComputerTimeoutException(System::String ^ message, Exception ^ innerException);
public RestartComputerTimeoutException (string message, Exception innerException);
new Microsoft.PowerShell.Commands.RestartComputerTimeoutException : string * Exception -> Microsoft.PowerShell.Commands.RestartComputerTimeoutException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The message used in the exception.

innerException
Exception

An exception that led to this exception.

Applies to