()
| 32 | } |
| 33 | |
| 34 | func (e *ToolDoesNotExistError) Error() string { |
| 35 | return fmt.Sprintf("tool %s does not exist", e.Name) |
| 36 | } |
| 37 | |
| 38 | // NewToolDoesNotExistError creates a new ToolDoesNotExistError. |
| 39 | func NewToolDoesNotExistError(name string) *ToolDoesNotExistError { |
no outgoing calls