Skip to content

Instantly share code, notes, and snippets.

@hiraq
Created August 28, 2016 14:41
Show Gist options
  • Save hiraq/4adbed71a6b25212d72acd1a1a9cda6b to your computer and use it in GitHub Desktop.
Save hiraq/4adbed71a6b25212d72acd1a1a9cda6b to your computer and use it in GitHub Desktop.
package main
import "fmt"
func Catch() {
if r := recover(); r != nil {
fmt.Println(fmt.Sprintf("Recovered from : %v", r))
}
}
func DoPanic() {
defer Catch()
panic("This is panic")
}
func main() {
DoPanic()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment