In modern Go, the best general way to do this is with the errors.Is
and errors.As
functions in the standard library.
For the example in the original question, this is quite straight forward:
if errors.Is(err, syscall.ECONNREFUSED) {
// Connection refused error
} else {
// Some other kind of error
}
However, this only works for errors which are properly wrapped/created to use these capabilities. Sometimes you may need to mix-and-match the use of errors.Is
and errors.As
with string comparison. I've made a video that goes into some of these details for those interested.
My old answer:
There's no standard way to do this.
The most obvious way, which should only be used if no other method is available, is to compare the error string against what you expect:
if err.Error() == "connection lost" { ... }
Or perhaps more robust in some situations:
if strings.HasSuffix(err.Error(), ": connection lost") { ... }
But many libraries will return specific error types, which makes this much easier.
In your case, what's relevant are the various error types exported by the net
package: AddrError, DNSConfigError, DNSError, Error, etc.
You probably care most about net.Error, which is used for network errors. So you could check thusly:
if _, ok := err.(net.Error); ok {
// You know it's a net.Error instance
if err.Error() == "connection lost" { ... }
}
What's more, how to get all the errors a specific standard library function may return?
The only fool-proof way to do this is to read the source for the library. Before going to that extreme, a first step is simply to read the godoc, as in the case of the net
package, the errors are pretty well documented.