Skip to content

Instantly share code, notes, and snippets.

@xealgo
Created August 23, 2018 23:07
Show Gist options
  • Save xealgo/a63d114fcfee701868254b2c4f3f3476 to your computer and use it in GitHub Desktop.
Save xealgo/a63d114fcfee701868254b2c4f3f3476 to your computer and use it in GitHub Desktop.
var DbConnectionFailure = errors.New("Failed to run query because a database connection was not established");
...
return errors.Wrap(DbConnectionFailure, err.Error())
...
if errors.Cause(err) == DbConnectionFailure {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment