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=unavailable autolearn_force=no version=3.4.4 X-Received: by 10.66.230.137 with SMTP id sy9mr2693861pac.10.1413494752818; Thu, 16 Oct 2014 14:25:52 -0700 (PDT) X-Received: by 10.140.42.107 with SMTP id b98mr45744qga.11.1413494752467; Thu, 16 Oct 2014 14:25:52 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!news.eternal-september.org!mx02.eternal-september.org!news.eternal-september.org!feeder.eternal-september.org!news.glorb.com!uq10no12094071igb.0!news-out.google.com!u5ni5qab.1!nntp.google.com!dc16no3367249qab.1!postnews.google.com!glegroupsg2000goo.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Thu, 16 Oct 2014 14:25:52 -0700 (PDT) In-Reply-To: Complaints-To: groups-abuse@google.com Injection-Info: glegroupsg2000goo.googlegroups.com; posting-host=24.36.114.177; posting-account=39pqWgoAAADkep0zRfYwywOXjRBV2-ic NNTP-Posting-Host: 24.36.114.177 References: <885f299a-b089-4892-ae2f-efffda3af1fb@googlegroups.com> <7793db91-842f-49f0-9931-b139e754183d@googlegroups.com> User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: <1309af4c-b4f1-46d3-9875-c386f154e4a4@googlegroups.com> Subject: Re: one task missing during the execution From: compguy45@gmail.com Injection-Date: Thu, 16 Oct 2014 21:25:52 +0000 Content-Type: text/plain; charset=ISO-8859-1 Xref: news.eternal-september.org comp.lang.ada:22536 Date: 2014-10-16T14:25:52-07:00 List-Id: I added... with Ada.Exceptions; use Ada.Exceptions; with Ada.Text_IO; use Ada.Text_IO; exception when tasking_error => Put_Line ("Something is wrong here" & Exception_Information (Error)); when others => put("some other error occurred"); I get error xpected private type "Ada.Exceptions.Exception_Occurrence" found type "Ada.Strings.Truncation" " compilation error when i just say when tasking_error => "Some error" get compiles fine and prints "some error" which tells me there is tasking error.... is there way to get more information about error?