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
+26.7k Golang : Encrypt and decrypt data with AES crypto
+11.3k CodeIgniter : How to check if a session exist in PHP?
+9.9k Golang : Resumable upload to Google Drive(RESTful) example
+28k Golang : Decode/unmarshal unknown JSON data type with map[string]interface
+9.7k Golang : Quadratic example
+52k Golang : How to get time in milliseconds?
+19.1k Golang : Clearing slice
+6.5k Golang : Handling image beyond OpenCV video capture boundary
+7.8k Golang : Mapping Iban to Dunging alphabets
+28.8k Golang : Read, Write(Create) and Delete Cookie example
+43.5k Golang : Convert []byte to image
+7.3k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream