Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:3758 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 72372 invoked from network); 6 Aug 2003 08:12:42 -0000 Received: from unknown (HELO secure.thebrainroom.com) (213.239.42.171) by pb1.pair.com with SMTP; 6 Aug 2003 08:12:42 -0000 Received: from zaneeb.brainnet.i (IDENT:root@brain.dial.nildram.co.uk [195.149.29.154]) by secure.thebrainroom.com (8.9.3/8.9.3) with ESMTP id JAA21825; Wed, 6 Aug 2003 09:12:40 +0100 Received: from TITAN (titan.brainnet.i [192.168.2.7]) by zaneeb.brainnet.i (8.11.6/8.11.6) with SMTP id h768CeM07849; Wed, 6 Aug 2003 09:12:40 +0100 Message-ID: <006301c35bf2$7c252c10$0702a8c0@TITAN> To: "Marcus BXrger" , "Cristiano Duarte" Cc: References: <20030806001540.7978.qmail@pb1.pair.com> <85567616.20030806091410@post.rwth-aachen.de> Date: Wed, 6 Aug 2003 09:12:31 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: Re: [PHP-DEV] try/catch/FINALLY From: wez@thebrainroom.com ("Wez Furlong") The most important thing missing from this is that you cannot rethrow the exception from the point where you suggest to place the finally code :-) --Wez. > There's absolute no need for finally: > > try { > } > catch (...) { > } > // here's you're finally code