Error Event

Fires if an unhandled error occurs during an event.

Syntax

// FUSEErrorEventArgs carries the FUSE Error event's parameters.
type FUSEErrorEventArgs struct {...}

func (args *FUSEErrorEventArgs) ErrorCode() int32
func (args *FUSEErrorEventArgs) Description() string

// FUSEErrorEvent defines the signature of the FUSE Error event's handler function.
type FUSEErrorEvent func(sender *FUSE, args *FUSEErrorEventArgs)

func (obj *FUSE) GetOnErrorHandler() FUSEErrorEvent
func (obj *FUSE) SetOnErrorHandler(handlerFunc FUSEErrorEvent)

Remarks

This event fires if an unhandled error occurs during another event. Developers can use this information to help track down unhandled errors in an application's event handlers.

Copyright (c) 2022 Callback Technologies, Inc. - All rights reserved.
CBFS FUSE 2020 Go Edition - Version 20.0 [Build 8348]