Full outline.

This commit is contained in:
Stephen Diehl
2016-07-29 12:28:29 -04:00
parent 5de8f47138
commit 5bf3b7f812
5 changed files with 114 additions and 1 deletions
+10
View File
@@ -60,3 +60,13 @@ throwSTM :: Exception e => e -> STM a
```haskell
throwError :: MonadError e m => e -> m a
```
#### Panic
```haskell
data FatalError = FatalError {msg :: Text}
```
```haskell
panic :: Text -> a
```