mirror of
https://github.com/apple/swift-nio.git
synced 2026-05-20 20:30:36 +00:00
Motivation: Users who want to use typed throws would benefit from us propagating the thrown error type through our APIs. Most of our surface doesn't allow for that because it relies on standard library APIs that haven't been updated, but we can do it for ByteBuffer which is entirely ours. Modifications: - Adopt typed rethrows in ByteBuffer Result: Users have an easier time working with ByteBuffer