There is also a "abort" :
don't do that. ever. use exit.
Quote don't do that. ever. use exit.Why ?
Because ivan17 told you not to do it
Quote from: captain jaster on November 13, 2010, 05:09:59 pmBecause ivan17 told you not to do it that should be a sufficient reason, but being in a good mood i'll tell you that abort will move the execution to the first (innermost) exception handling block it finds... or second if the first chooses not to handle that exception... or it may just shut the whole thing down if you have no except blocks around.