gitlab.com/evatix-go/core@v1.3.55/coreinterface/ErrorHandler.go (about)

     1  package coreinterface
     2  
     3  type ErrorHandler interface {
     4  	// HandleError
     5  	//
     6  	// Only call panic
     7  	// if it has any error
     8  	HandleError()
     9  }