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,7d3cb5920e882220 X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news2.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!local01.nntp.dca.giganews.com!nntp.comcast.com!news.comcast.com.POSTED!not-for-mail NNTP-Posting-Date: Thu, 06 Dec 2007 15:24:44 -0600 From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Exceptions References: <5947aa62-2547-4fbb-bc46-1111b4a0dcc9@x69g2000hsx.googlegroups.com> X-Newsreader: Tom's custom newsreader Message-ID: Date: Thu, 06 Dec 2007 15:24:44 -0600 X-Usenet-Provider: http://www.giganews.com NNTP-Posting-Host: 24.4.252.232 X-Trace: sv3-MLmBitBNYldKNnfxv0HhZ5tGkjYFJZE8XuiHxUh+zHjzTYPXCSZFHmbEHKPYKd4RKwiwlg9SCh23nfu!Geba/HzYEkkqBydOYQwnPTKoLZGepMpQuqv/t9/YwRgEk6o4Quwt9Qzl6GMNdVdU5qOux/KXnvOB!NTEC5S2NDGkQ17PtHZN7KHpJ3B6B X-Complaints-To: abuse@comcast.net X-DMCA-Complaints-To: dmca@comcast.net X-Abuse-and-DMCA-Info: Please be sure to forward a copy of ALL headers X-Abuse-and-DMCA-Info: Otherwise we will be unable to process your complaint properly X-Postfilter: 1.3.36 Xref: g2news1.google.com comp.lang.ada:18748 Date: 2007-12-06T15:24:44-06:00 List-Id: >Is there any way to force programmers to catch exception that >your function throws? Do you mean force them to write code like: begin y := func(x); exception when funcs_important_exception=>null; -- ignore unimportant exception end;