MCPcopy Index your code
hub / github.com/supabase/auth / Error

Method Error

internal/api/provider/errors.go:13–18  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

11}
12
13func (e *HTTPError) Error() string {
14 if e.InternalMessage != "" {
15 return e.InternalMessage
16 }
17 return fmt.Sprintf("%d: %s", e.Code, e.Message)
18}
19
20func (e *HTTPError) Is(target error) bool {
21 return e.Error() == target.Error()

Calls

no outgoing calls