SPCmdlet.ThrowTerminatingError Method (Exception, , Object)
Writes the details of a terminating error to the screen as an error message and logs the details in a log file.
Namespace: Microsoft.SharePoint.PowerShell
Assembly: Microsoft.SharePoint.PowerShell (in Microsoft.SharePoint.PowerShell.dll)
Syntax
'Declaration
Protected Sub ThrowTerminatingError ( _
exception As Exception, _
category As ErrorCategory, _
target As Object _
)
'Usage
Dim exception As Exception
Dim category As ErrorCategory
Dim target As Object
Me.ThrowTerminatingError(exception, _
category, target)
protected void ThrowTerminatingError(
Exception exception,
ErrorCategory category,
Object target
)
Parameters
exception
Type: System.ExceptionThe exception that was thrown that indicates the terminating error.
category
Type: ErrorCategoryLiteral description of the error.
target
Type: System.ObjectThe instance or its identity that is the source of the error.
Remarks
When this method is called, an error record is sent to the error pipeline and the cmdlet stops executing.
See Also
Reference
ThrowTerminatingError Overload
Microsoft.SharePoint.PowerShell Namespace
ThrowTerminatingError(Exception, ErrorCategory, Object, String)