From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.5-pre1 Date: 9 Feb 93 01:59:54 GMT From: emery@mitre-bedford.arpa (David Emery) Subject: Re: simple exception-handler Message-ID: List-Id: The Ada Language Issues Working Group (SIGAda ALIWG) discussed this issue a while ago and came up with the following recommendation: package CURRENT_EXCEPTION is function EXCEPTION_NAME return STRING; end CURRENT_EXCEPTION; with the basic semantics that the name returned is the simple identifier of the exception that would be raised by a "raise;" clause within the context of an exception handler. Many compiler support this recommendation, making it reasonably portable. dave