What is the meaning of exceptions in Haskell? The only usage I see is to put in undefined or error in my code to stop programs from running. Otherwise I consider programming with exceptions as a logical design flaw. But Haskell has an advanced exception module Control.Exception which is used by Prelude. I read that the reason for exceptions in C++ was to prevent a lot of "call function, then check status"-lines in code. But such things can be abstracted away in Haskell. The only other reason I can see for exception handling in Haskell is with FFI, to handle foreign exceptions, but only for internal use in a Haskell function wrapping the call.
|
|
|||
| show 3 more comments |
|
In my humble opinion, exceptions mean "you broke the contract of a function". I'm not talking about the type contract, I'm talking about the stuff you generally find in comments.
Of course you could always provide this functions the "safe" way:
Perhaps we should even abstract this pattern
You could imagine similar combinators for using
Because now the result of
But therein lies the rub. Newbies generally know next to nothing when it comes to monadic composition. The Haskell Committee, as many on the #haskell irc channel will quickly tell you*, has made some rather wonky decisions regarding language design in order to cater to newbies. We want to be able to say "you don't need to know monads in order to start making useful things in Haskell". And I generally agree with that sentiment. tl;dr A few quick answers to the question: What is an exception?
There may be other explanations. See also Haskell Report > Basic Input/Output > Exception Handling in the IO Monad *I actually asked on #haskell irc if they approved of this statement. The only response I got was [Edit] Note that
|
|||||||||||||
|
|
The "error" function is for when a function receives invalid input, or when something internal happens that is supposed to never happen (i.e., a bug). In short, calling "error" represents a bug - either in the caller or callee. The "undefined" constant is more for values which aren't supposed to be used - generally because they're going to be replaced with something else, or because they're phantom values used to get a specific type. (It's actually implemented as a call to "error".) So why do we have Basically, "because I/O operations can throw exceptions". You could be happily talking to an FTP server over a TCP socket, and suddenly the connection breaks. The result? Your program throws an exception. Or you could run out of RAM, or the disk might fill up, or whatever. Notice that almost all of these things are not your fault. If you can anticipate a specific thing going wrong, you should use things like Note that |
|||
|
|
|
Exceptions are a legitimate form of flow control. It's not clear to me why, when given a tool, programmers insist that it is "only for" certain cases and rule out other possible uses. For example, if you are performing a backtracking computation, you can use exceptions to backtrack. In Haskell it would probably be more common to use the list monad for this, but exceptions are a legitimate way to go. |
|||
|
|
|
It seems that this question actually was discussed here: http://haskell.org/haskellwiki/Exception I don't know if this question was actually answerable, as pointed out. |
|||
|
|
IO a -> a? – FUZxxl Oct 9 '11 at 19:12