Handler.ErrorManager Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the ErrorManager for this Handler. -or- Define an ErrorManager for this Handler.
public virtual Java.Util.Logging.ErrorManager? ErrorManager { [Android.Runtime.Register("getErrorManager", "()Ljava/util/logging/ErrorManager;", "GetGetErrorManagerHandler")] get; [Android.Runtime.Register("setErrorManager", "(Ljava/util/logging/ErrorManager;)V", "GetSetErrorManager_Ljava_util_logging_ErrorManager_Handler")] set; }
[<get: Android.Runtime.Register("getErrorManager", "()Ljava/util/logging/ErrorManager;", "GetGetErrorManagerHandler")>]
[<set: Android.Runtime.Register("setErrorManager", "(Ljava/util/logging/ErrorManager;)V", "GetSetErrorManager_Ljava_util_logging_ErrorManager_Handler")>]
member this.ErrorManager : Java.Util.Logging.ErrorManager with get, set
Property Value
the ErrorManager for this Handler
- Attributes
Exceptions
if em
is null
.
Remarks
Property getter documentation:
Retrieves the ErrorManager for this Handler.
Java documentation for java.util.logging.Handler.getErrorManager()
.
Property setter documentation:
Define an ErrorManager for this Handler.
The ErrorManager's "error" method will be invoked if any errors occur while using this Handler.
Java documentation for java.util.logging.Handler.setErrorManager(java.util.logging.ErrorManager)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.