Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Today for catching error problem, I have read erlang's error and error handling documents.

For generated error type, there are 2 types of class, one is exit and the other is throw. After grepping my source code, The throw and exit expression have already massed up.

Both are similar, and seems just catch match expression are different.

(emacs@chen-yumatoMacBook-Pro.local)30> catch throw ({aaa}).
{aaa}
(emacs@chen-yumatoMacBook-Pro.local)31> catch exit ({aaa}).
{'EXIT',{aaa}}
(emacs@chen-yumatoMacBook-Pro.local)32> catch gen_server:call(aaa,{aaa}).
{'EXIT',{noproc,{gen_server,call,[aaa,{aaa}]}}}

Could you tell me when to use throw and when to use exit?

share|improve this question

2 Answers

up vote 3 down vote accepted

There are 3 classes which can be caught with a try ... catch: throw, error and exit.

  • throw is generated using throw/1 and is intended to be used for non-local returns and does not generate an error unless it is not caught (when you get a nocatch error).

  • error is generated when the system detects an error. You can explicitly generate an error using error/1. The system also includes a stacktrace in the generated error value, for example {badarg,[...]}.

  • exit is generated using exit/1 and is intended to signal that this process is to die.

The difference between error/1 and exit/1 is not that great, it more about intention which the stacktrace generated by errors enhances.

The difference between them is actually more noticeable when doing catch ...: when throw/1 is used then the catch just returns the thrown value, as is expected from a non-local return; when an error/1 is used then the catch returns {'EXIT',Reason} where Reason contains the stacktrace; while from exit/1 catch also returns {'EXIT',Reason} but Reason only contains the actual exit reason. try ... catch looks like it equates them, but they are/were very different.

share|improve this answer
Thank you very much for your help. It is more clear now. – Chen Yu Nov 30 '12 at 22:31
@ChenYu - apologies for my sloppy explanation. rvirding - thanks for clearing that up. Let me either fix/delete my answer - lesser confusion the better! – Faiz Nov 30 '12 at 22:35

[UPDATED]

I glossed over the important difference between throw and error, pointed out by Robert Virding. This edit is just for the record!

throw error is to be used where one would use throw in other languages. An error in a running process has been detected by your code, which signals an exception with error/1. The same process catches it (possibly higher up in the stack), and the error is to be handled within the same process. error always brings with it a stacktrace.

throw is to be used not to signal an error, but just to return a value from a deeply nested function. Since it unwinds the stack, calling throw returns the thrown value to the place it was caught. As in the case of error, we're catching stuff that was thrown, only what was thrown wasn't an error but rather just a value passed up the stack. This is why throw does not bring with it a stacktrace.

As a contrived example, if we wanted to implement an exists function for lists, (similar to what list:any does) and as an exercise without without doing the recursing ourselves, and using just list:foreach, then throw could be used here:

exists(P, List) ->
  F = fun(X) -> 
    case P(X) of 
      true -> throw(true); 
      Whatever -> Whatever 
    end
  end,
  try lists:foreach(F, List) of
    ok -> false
  catch
   true -> true
  end.

A value thrown but not caught is treated as an error: a nocatch exception will be generated.

EXIT is to be signaled by a process when it 'gives up'. The parent process handles the EXIT, while the child process just dies. This is the Erlang let-it-crash philosophy.

So exit/1's EXIT is not to be caught within the same process, but left to the parent. error/1's errors are local to the process - i.e., a matter of what happens and how it is handled by the process itself; throw/1 is used for control flow across the stack.

[UPDATE]

  1. This tutorial explains it well: http://learnyousomeerlang.com/errors-and-exceptions
  2. Note there is also a exit/2 - called with a Pid of a process to send the EXIT to. exit/1 implies the parent process.
share|improve this answer
Thank you very much for your information. – Chen Yu Nov 29 '12 at 4:15
@ChenYu If you read the chapter you will see that the explanation here is wrong. You use throw/1 to do a non-local return, NOT for throwing an error, you use error/1 for signalling an error and you exit/1 for showing that the process is to die. There are 3 types of classes: throw, error and exit – rvirding Nov 30 '12 at 21:54
@rvirding hope I've made amends with this. Feedback appreciated! – Faiz Nov 30 '12 at 23:55
@Faiz Yes, that's fine. :-) There is one subtle difference between exit(foo) and exit(self(),foo) which very many miss. The exit/1 version is "internal" to the process and can be caught with try/catch while exit/2 is "external" and actually sends the signal to itself so it can't be caught with try/catch but trapping exists converts it to a message as with any other exit signal. Even the BEAM doesn't get it completely right. There is a bug report about it. – rvirding Dec 2 '12 at 1:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.