From: "Mehr, Assaph (Assaph)" Date: 2004-09-28T07:38:24+09:00 Subject: Re: Getting the exit code in a SystemExit rescue block? > Assume that I have the following code: > begin > exit(42) > rescue SystemExit => e p e.status > # How do I find out the argument passed to exit() here? > end