mozilla / webrtc-sdp

Rust SDP parser for WebRTC
Mozilla Public License 2.0
155 stars 30 forks source link

Create specific errors, instead of using error strings as the Error API surface #158

Closed na-g closed 5 years ago

na-g commented 5 years ago

There are many cases where we create a generic error that contains a string that describes the error. This forces us into string stability that we don't want, and is in general a sub-optimal interface for users.

na-g commented 5 years ago

This is a duplicate of #153