HandledInDomainWithMessage is like HandledWithMessage but with a domain.
(err error, domain Domain, msg string)
| 70 | |
| 71 | // HandledInDomainWithMessage is like HandledWithMessage but with a domain. |
| 72 | func HandledInDomainWithMessage(err error, domain Domain, msg string) error { |
| 73 | return domains.HandledInDomainWithMessage(err, domain, msg) |
| 74 | } |
| 75 | |
| 76 | // GetDomain extracts the domain of the given error, or NoDomain if |
| 77 | // the error's cause does not have a domain annotation. |
nothing calls this directly
no test coverage detected
searching dependent graphs…