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,2a687662f09731bb X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news4.google.com!news.glorb.com!newsfeed.stueberl.de!peer-uk.news.demon.net!kibo.news.demon.net!mutlu.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Ada Quality and Style book discussion ("_Type" suffix) Date: Fri, 18 Nov 2005 22:33:44 +0000 Organization: Pushface Message-ID: References: <1132227241.9036.44.camel@sonnenregen> <437c877e$1_1@glkas0286.greenlnk.net> NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1132353225 7715 62.49.19.209 (18 Nov 2005 22:33:45 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Fri, 18 Nov 2005 22:33:45 +0000 (UTC) Cancel-Lock: sha1:K2fmabVWzja1NMHkls6vSfvydoE= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (darwin) Xref: g2news1.google.com comp.lang.ada:6471 Date: 2005-11-18T22:33:44+00:00 List-Id: Brian May writes: > exception. I think it is a limitation of the Ada exception handling > model that a function can raise any exception - including exceptions > that are outside the scope of the caller. I found a use for this .. separate (A.B.C) procedure D is Unimplemented : exception; begin raise Unimplemented; null; end D; has (in GNAT) the pleasing effect of reporting an exception named A.B.C.D.Unimplemented -- very helpful for tracing things down!