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=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: a07f3367d7,8aaaaeb1690d828b X-Google-Attributes: gida07f3367d7,public,usenet X-Google-NewGroupId: yes X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!v20g2000yqm.googlegroups.com!not-for-mail From: =?ISO-8859-1?Q?Yannick_Duch=EAne_Hibou57?= Newsgroups: comp.lang.ada Subject: Re: writing on terminal before an exception Date: Mon, 3 Aug 2009 15:29:27 -0700 (PDT) Organization: http://groups.google.com Message-ID: <6cfd7d42-3184-47d8-b11c-0a2a2a412058@v20g2000yqm.googlegroups.com> References: <9bf5d23b-ae1c-48aa-b23e-7c716c6eba29@k1g2000yqf.googlegroups.com> NNTP-Posting-Host: 77.198.58.140 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1249338567 9780 127.0.0.1 (3 Aug 2009 22:29:27 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Mon, 3 Aug 2009 22:29:27 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: v20g2000yqm.googlegroups.com; posting-host=77.198.58.140; posting-account=vrfdLAoAAAAauX_3XwyXEwXCWN3A1l8D User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; fr),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:7551 Date: 2009-08-03T15:29:27-07:00 List-Id: On 3 ao=FBt, 22:40, vlc wrote: > Have you already considered something like > > raise Sh3_NoData with "No SH3 data."; > > I'm not absolutely sure, but I think this will only compile in Ada > 2005. It will, surely, as said the ARM 2005 : ARM 11.3 (2/2) says > raise_statement ::=3D raise; > | raise exception_name [with string_expression]; raise [exception_n= ame]; But he will loose the default exception informations which are useful too (the string provided will replace the exception message which is defaulted to some exception informations). And any way, the behaviour he has meet is not a normal behaviour, so it would be nice to solve it.