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 instance of the FailedOperationException class that has the specified object on which the specified operation failed, and that has the specified inner exception and reason for occurring.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Sub New ( _
operation As String, _
failedObject As Object, _
innerException As Exception, _
reason As String _
)
'Usage
Dim operation As String
Dim failedObject As Object
Dim innerException As Exception
Dim reason As String
Dim instance As New FailedOperationException(operation, _
failedObject, innerException, reason)
public FailedOperationException(
string operation,
Object failedObject,
Exception innerException,
string reason
)
public:
FailedOperationException(
String^ operation,
Object^ failedObject,
Exception^ innerException,
String^ reason
)
new :
operation:string *
failedObject:Object *
innerException:Exception *
reason:string -> FailedOperationException
public function FailedOperationException(
operation : String,
failedObject : Object,
innerException : Exception,
reason : String
)
Parameters
- operation
Type: System.String
A String value that specifies the operation that failed.
- failedObject
Type: System.Object
An Object system object value that specifies the object on which the operation failed.
- innerException
Type: System.Exception
An Exception system object value that specifies the inner exception for the Failed Operation exception.
- reason
Type: System.String
A String value that specifies the reason why the exception occurred.
Examples
See Also
Reference
FailedOperationException Class