Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A simple utility package for exception handling with try-catch in Golang

License

NotificationsYou must be signed in to change notification settings

rbrahul/exception

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exception

Go test workflowGo Report CardcodecovGo Reference

Go Try Catch Exception Handler

By design, Go doesn't offer any mechanism for Exception handling. But Programmers from different backgrounds like Java, C++, Php can be sceptical about the decision. Exception handling withTry Catch Finally is well adapted in all the modern languages. To ease the pain, this library offers utility functions for Exception Handling, which will help programmers to write Go code withTry-Catch-Finally approach.

This is how you can throw Exception and handle within Catch:

import(     e"github.com/rbrahul/exception" )...e.Try(func() {data:=getValue()// get me the value from Allionsifdata!=100 {e.Throw(e.AssertionError("Expected value is not same as 100"))        }})    .Catch(e.In(e.AssertionErrorType,e.ValueErrorType),func(excep*Exception) {fmt.Println("Message:",excep.Message)fmt.Println("Exception Type:",excep.Type)fmt.Println("Here is the Stack Trace:",excep.StackTrace)    })    .Catch(nil,func(excep*Exception) {fmt.Println("I'll be executed as fallback:",excep.Message)    })    .Finally(func() {fmt.Println("I have been executing always to clean the world!")})    .Run()...

Throwing a custom exception

You have to define a exception variable with ExceptionType.

constSomethingWentWrongError  e.ExceptionType="SomethingWentWrongError"

Now you have to initialize and throw your exception via e.New constructor. You can pass a proper error message as optional argument.

e.Try(func() {e.Throw(e.New(SomethingWentWrongError,"Something went worng!"))})    .Catch(e.In(SomethingWentWrongError),func(excep*Exception) {fmt.Println("Message:",excep.Message)fmt.Println("Exception Type:",excep.Type)    })    .Finally(func() {fmt.Println("I'm Gonna fix it!")})    .Run()

You can wrap any panic with try-catch and recover it elegently

e.Try(func() {panic("I'm gonna panic but don't worry")})    .Catch(nil,func(excep*Exception) {fmt.Println("I knew you are gonna catch me :p",excep.Message)    })    .Run()

About

A simple utility package for exception handling with try-catch in Golang

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages


[8]ページ先頭

©2009-2026 Movatter.jp