Skip to content

Instantly share code, notes, and snippets.

@brpaz
Created March 15, 2019 19:57
Show Gist options
  • Save brpaz/91d85faf98b46bb090a09ce130ec0771 to your computer and use it in GitHub Desktop.
Save brpaz/91d85faf98b46bb090a09ce130ec0771 to your computer and use it in GitHub Desktop.
#golang
if err != nil {
switch err.(type) {
case *ErrZeroDivision:
fmt.Println(err.Error())
default:
fmt.Println("What the h* just happened?")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment