Replace with `fmt.Errorf`

**Before:**

```
errors.New(fmt.Sprintf(...))
```

**After:**

```
fmt.Errorf(...)
```
