InternalLoggerException Constructors

Definition

Initializes the InternalLoggerException class.

Overloads

InternalLoggerException()

Initializes a new instance of the InternalLoggerException class.

InternalLoggerException(String)

Initializes a new instance of the InternalLoggerException class using the specified values.

InternalLoggerException(String, Exception)

Initializes a new instance of the InternalLoggerException class using the specified values.

InternalLoggerException()

Initializes a new instance of the InternalLoggerException class.

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

Applies to

InternalLoggerException(String)

Initializes a new instance of the InternalLoggerException class using the specified values.

public:
 InternalLoggerException(System::String ^ message);
public InternalLoggerException (string message);
new Microsoft.Build.BuildEngine.InternalLoggerException : string -> Microsoft.Build.BuildEngine.InternalLoggerException
Public Sub New (message As String)

Parameters

message
String

The error message that explains the reason for the exception.

Applies to

InternalLoggerException(String, Exception)

Initializes a new instance of the InternalLoggerException class using the specified values.

public:
 InternalLoggerException(System::String ^ message, Exception ^ innerException);
public InternalLoggerException (string message, Exception innerException);
new Microsoft.Build.BuildEngine.InternalLoggerException : string * Exception -> Microsoft.Build.BuildEngine.InternalLoggerException
Public Sub New (message As String, innerException As Exception)

Parameters

message
String

The error message that explains the reason for the exception.

innerException
Exception

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

Applies to