1
1
mirror of https://github.com/qfpl/applied-fp-course.git synced 2024-11-23 03:44:45 +03:00

Stub in bracketOnError to make that function a bit less open-ended

This commit is contained in:
Sean Chalmers 2017-09-06 10:59:08 +10:00
parent f458bb074f
commit 637bde5add

View File

@ -141,8 +141,11 @@ parseJSONConfigFile =
-- Use the ``bracketOnError`` function to guard against exceptions.
readObject
:: IO (Maybe Aeson.Object)
readObject =
error "readObject not implemented"
readObject = bracketOnError
undefined
undefined
undefined
-- | Command Line Parsing