(id toolspkg.ToolID, err error)
| 4768 | } |
| 4769 | |
| 4770 | func nativeNetworkInputError(id toolspkg.ToolID, err error) error { |
| 4771 | return toolspkg.NewToolError( |
| 4772 | toolspkg.ErrorCodeInvalidInput, |
| 4773 | id, |
| 4774 | taskpkg.RedactClaimTokens(err.Error()), |
| 4775 | fmt.Errorf("%w: %w", toolspkg.ErrToolInvalidInput, err), |
| 4776 | toolspkg.ReasonSchemaInvalid, |
| 4777 | ) |
| 4778 | } |
| 4779 | |
| 4780 | type nativeBoundSessionScope struct { |
| 4781 | sessionID string |
no test coverage detected