Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Initializes a new, default instance of the UtilityException class with the specified error message and inner exception.
Namespace: Microsoft.SqlServer.Management.Utility
Assembly: Microsoft.SqlServer.Management.Utility (in Microsoft.SqlServer.Management.Utility.dll)
Syntax
'Declaration
Public Sub New ( _
message As String, _
innerException As Exception _
)
'Usage
Dim message As String
Dim innerException As Exception
Dim instance As New UtilityException(message, _
innerException)
public UtilityException(
string message,
Exception innerException
)
public:
UtilityException(
String^ message,
Exception^ innerException
)
new :
message:string *
innerException:Exception -> UtilityException
public function UtilityException(
message : String,
innerException : Exception
)
Parameters
- message
Type: System.String
A String value that contains a message describing the error.
- innerException
Type: System.Exception
An Exception that is the cause of the current exception, or a null reference if no inner exception is specified.