package
1.11.0
Repository: https://github.com/gflydev/core.git
Documentation: pkg.go.dev

# README

Try-Finally-Catch

Usage

Quick usage

import "github.com/gflydev/core/try"

try.Perform(func() {
    calledTry()
}).Finally(func() {
    calledFinally()
}).Catch(func(e try.E) {
    log.Errorf("Catch error %v", e)
})