haskell-ricochet
haskell-ricochet copied to clipboard
Add ExceptT to Ricochet Monad transformer stack
Where exactly do we need exceptions?
Whenever the remote peer sends something we cannot parse. I opened this issue when there were stdout messages in Connection.hs.
Would fail be enough for now?
No, because usually fail = error. That would cause a crash, which is not really what we want.
I see.