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 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,9a8c8a29d3e2d7c6 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews2.google.com!not-for-mail From: anh_vo@udlp.com (Anh_Vo) Newsgroups: comp.lang.ada Subject: Re: [Ann] More Ada0Y packages for Ada95! Date: 30 Jul 2004 12:50:39 -0700 Organization: http://groups.google.com Message-ID: <5a59d6a9.0407301150.348121a8@posting.google.com> References: NNTP-Posting-Host: 69.104.229.186 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1091217039 20225 127.0.0.1 (30 Jul 2004 19:50:39 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 30 Jul 2004 19:50:39 +0000 (UTC) Xref: g2news1.google.com comp.lang.ada:2464 Date: 2004-07-30T12:50:39-07:00 List-Id: "Martin Dowie" wrote in message news:... > Martin Dowie wrote: > >> I've updated my web page to include the following implementations: > > > > An address mught have been handy! :-) > > > > http://www.martin.dowie.btinternet.co.uk/ > > Just added AI-286 Ada.Assertions > > Cheers > > -- Martin It is a great effort you are putting in. I would like to make a suggestion regarding exception handler. It would be better to use Raise_Exception (E => Exception_Name'Identity, "useful message") than raise Exception_Name. In fact, it is extremely useful in debugging quickly where the problem comes from. AV