Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Handles the specified runtime exception.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Overridable Function HandleRuntimeException ( _
ex As Exception _
) As Boolean
'Usage
Dim ex As Exception
Dim returnValue As Boolean
returnValue = Me.HandleRuntimeException(ex)
protected virtual bool HandleRuntimeException(
Exception ex
)
Parameters
ex
Type: System.ExceptionThe exception to be handled.
Return Value
Type: System.Boolean
true if the exception is handled in this method; otherwise, false.
Remarks
This virtual method always returns false.
This virtual method can be implemented in a subclass to handle ex in a special manner.