MCPcopy Index your code
hub / github.com/authorizerdev/authorizer / Error

Struct Error

internal/service/errors.go:46–50  ·  view source on GitHub ↗

Error is a typed service error carrying a transport-neutral Kind alongside a human-readable message. It implements error and unwraps to any underlying cause so errors.Is/errors.As keep working.

Source from the content-addressed store, hash-verified

44// human-readable message. It implements error and unwraps to any underlying
45// cause so errors.Is/errors.As keep working.
46type Error struct {
47 Kind ErrorKind
48 msg string
49 err error
50}
51
52// Error returns the human-readable message. When constructed from an
53// underlying error without an explicit message, it falls back to that error's

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected