ThundR67 / falcon

A Simple Yet Highly Powerful Package For Error Handling

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go Report Card GoDoc GoCover

Falcon

Minimal And Efficient Error Handling In Go

Simple Example

errHandler := falcon.NewErrorHandler()

errHandler.AddHandler(func(err error, data ...interface{}) interface{} {
    fmt.Println("Generic Error Occured")
    return SomeData
})

errHandler.AddHandler(func(err error, data ...interface{}) interface{} {
    fmt.Println("Error Of Type CustomErrorType Occured")
    return SomeData
}, CustomErrorType{})

SomeData := errHandler.Check(err, SomeRandomData1, SomeRandomData2)
// Data passed after the err will be passed to handlers

About

A Simple Yet Highly Powerful Package For Error Handling

License:MIT License


Languages

Language:Go 100.0%