From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,e315b3232f1093b0 X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!o36g2000vbi.googlegroups.com!not-for-mail From: rickduley Newsgroups: comp.lang.ada Subject: Re: Exception handler does not catch an exception Date: Mon, 8 Jun 2009 00:21:29 -0700 (PDT) Organization: http://groups.google.com Message-ID: References: <291Xl.333963$4m1.31474@bgtnsc05-news.ops.worldnet.att.net> NNTP-Posting-Host: 123.3.169.80 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1244445689 16863 127.0.0.1 (8 Jun 2009 07:21:29 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 8 Jun 2009 07:21:29 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: o36g2000vbi.googlegroups.com; posting-host=123.3.169.80; posting-account=q18aiAoAAADbiIPIlD5R8oYVGhuoBvVA User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:6362 Date: 2009-06-08T00:21:29-07:00 List-Id: On Jun 8, 1:16=A0pm, a...@anon.org (anon) wrote: > From what you have posted the exception is first trapped, but causes anot= her > exception with the statement: > > =A0 =A0 =A0Get_Line (Line, Last); > > You might first try commenting this line or changing the line to: > > =A0 =A0 =A0Skip_Line ; > The Get_Line is simply to hold the message in the command window while I read the results. It doesn't work, as you can see from the line [2009-06-08 10:48:19] process exited with status1 (elapsed time: 03.28s) in the error message. The process has exited without waiting for the Get_Line. This means it did not get into the exception handler. If it had it would have printed the message, not the traceback locations.