You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a library user I want to have a errors understandable at a glance without looking what the error number means. In #3 I have a error Pthread(22) which I can't understand quickly. Making the error be a named constant (a enum variant) allows me to understand the error quickly: Error::Pthread(PthreadError::EINVAL).
The text was updated successfully, but these errors were encountered:
As a library user I want to have a errors understandable at a glance without looking what the error number means. In #3 I have a error
Pthread(22)
which I can't understand quickly. Making the error be a named constant (aenum
variant) allows me to understand the error quickly:Error::Pthread(PthreadError::EINVAL)
.The text was updated successfully, but these errors were encountered: