pachli-android/core/ui
Nik Clayton efd1c8e556
refactor: Use the PachliError type for ApiError (#739)
In the previous code `PachliError` could correctly chain errors and
generate error messages, `ApiError` didn't, which is why there was the
temporary `ApiError.fmt()` extension function.

Rewrite `ApiError` to implement `PachliError` so it gets these benefits
and to reduce the number of different error-handling mechanisms in the
code.

Main changes:

- `PachliError` is now an interface so it can be extended by other
  error interfaces.
- All the `ApiError` subclasses implement `PachliError`, and can
  specify the error string and interpolated variables at the point of
  declaration.
- Update `ListsRepository` and `ServerRepository` to return
  `PachliError` subclasses.
2024-06-12 10:22:27 +02:00
..
src refactor: Use the PachliError type for ApiError (#739) 2024-06-12 10:22:27 +02:00
build.gradle.kts fix: Surface all exceptions to the user instead of crashing (#565) 2024-03-24 18:36:28 +01:00
lint-baseline.xml refactor: Extract user list functionality to `feature:lists` (#537) 2024-03-16 18:42:11 +01:00