Golang : Smarter Error Handling with strings.Contains()
In this tutorial, we will learn some simple trick with strings.Contain() function on capturing the error message and handling it according to the error message.
Most of the Go source code will typically use these lines of codes to handle error.
For example :
if err != nil {
panic(err)
}
or
if err!= nil {
fmt.Println(err.Error())
os.Exit(1)
}
Let's see how error can be handled in a smarter way. This block of code will first evaluates the error string and then do the necessary action.
if !strings.Contains(err.Error(), "timed out") {
fmt.Printf("resulting error not a timeout: %s", err)
}
or
if strings.Contains(err.Error(), "overflow") {
// DO SOMETHING TO RECOVER THE OVERFLOW
}
Hope you will find this short Golang tutorial useful
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+22.6k Golang : Calculate time different
+10.8k Golang : Web routing/multiplex example
+15k Golang : Find location by IP address and display with Google Map
+16.8k Golang : Covert map/slice/array to JSON or XML format
+7k Golang : File system scanning
+6.9k Golang : Gorrila mux.Vars() function example
+17.2k Golang : Find smallest number in array
+11.8k Golang : Save webcamera frames to video file
+8.4k Golang : Set or add headers for many or different handlers
+11.1k Golang : Delay or limit HTTP requests example
+13.2k Golang : Qt progress dialog example
+14.2k How to automatically restart your crashed Golang server