| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : package profile 2 : 3 : import "resume/internal/shared/apperr" 4 : 5 0 : func errUnauthorized() error { 6 0 : return apperr.New(apperr.CodeUnauthorized, "unauthorized", nil) 7 0 : } 8 : 9 0 : func errCheckAddressFailed(cause error) error { 10 0 : fields := map[string]any{} 11 0 : if cause != nil { 12 0 : fields["cause"] = cause.Error() 13 0 : } 14 0 : return apperr.New(apperr.CodeInternal, "failed to check address existence", fields) 15 : } |
| Generated by: LCOV version 2.3.1-1 |