comments some work in progress piece of code with error handling

This commit is contained in:
Vincent Hanquez 2015-04-08 22:33:39 +01:00
parent 842d3fd44a
commit f73b0e142e

View File

@ -49,6 +49,7 @@ instance Monad CryptoFailable where
CryptoPassed a -> m2 a
CryptoFailed e -> CryptoFailed e
{-
throwCryptoError :: CryptoFailable a -> IO a
throwCryptoError = undefined
@ -57,3 +58,4 @@ eitherCryptoError = undefined
maybeCryptoError :: CryptoFailable a -> Maybe a
maybeCryptoError = undefined
-}