MCPcopy
hub / github.com/larksuite/cli / Error

Method Error

errs/types.go:459–464  ·  view source on GitHub ↗

Error is nil-receiver safe; see ValidationError.Error.

()

Source from the content-addressed store, hash-verified

457
458// Error is nil-receiver safe; see ValidationError.Error.
459func (e *APIError) Error() string {
460 if e == nil {
461 return ""
462 }
463 return e.Problem.Error()
464}
465
466func NewAPIError(subtype Subtype, format string, args ...any) *APIError {
467 return &APIError{

Calls

no outgoing calls