Open
Description
Some of the errors returned by the library implement the std::error::Error
trait and some are just String
s. I propose all errors returned by the library implement std::error::Error
to simplify error handling for consumers.
In the cases where we only have a String
to return, this can be wrapped in an enum
that implements Error
.
This would of course be a breaking change.
Would you be interested in a PR for this?