MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / Error

Method Error

api/retry.go:115–128  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

113type BuildRequestFunc func() (RequestParts, error)
114
115type StreamFunc func(
116 ctx context.Context,
117 url string,
118 headers map[string]string,
119 body []byte,
120) <-chan EventResult
121
122type RetryableError struct {
123 Message string
124}
125
126func (e RetryableError) Error() string {
127 return e.Message
128}
129
130func NewRetryableError(message string) error {
131 return RetryableError{Message: message}

Callers 2

streamAnthropicMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected