Return-Path: Delivered-To: apmail-activemq-camel-dev-archive@locus.apache.org Received: (qmail 60993 invoked from network); 5 Jan 2009 18:59:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Jan 2009 18:59:28 -0000 Received: (qmail 5032 invoked by uid 500); 5 Jan 2009 18:59:28 -0000 Delivered-To: apmail-activemq-camel-dev-archive@activemq.apache.org Received: (qmail 4956 invoked by uid 500); 5 Jan 2009 18:59:28 -0000 Mailing-List: contact camel-dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-dev@activemq.apache.org Delivered-To: mailing list camel-dev@activemq.apache.org Received: (qmail 4940 invoked by uid 99); 5 Jan 2009 18:59:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jan 2009 10:59:28 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 05 Jan 2009 18:59:26 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 60334234C47E for ; Mon, 5 Jan 2009 10:59:05 -0800 (PST) Message-ID: <912773286.1231181945392.JavaMail.jira@brutus> Date: Mon, 5 Jan 2009 10:59:05 -0800 (PST) From: "Jonathan Anstey (JIRA)" To: camel-dev@activemq.apache.org Subject: [jira] Commented: (CAMEL-1218) onException DSL should only be possible to set at top level (not within routes) In-Reply-To: <1951416570.1230977765400.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/CAMEL-1218?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=48478#action_48478 ] Jonathan Anstey commented on CAMEL-1218: ---------------------------------------- Yeah, I can take a look into this. Not sure how to do this off the not of my head though... well, as a last resort we can probably just not process that part of a route and just log a warning to use the global version. > onException DSL should only be possible to set at top level (not within routes) > ------------------------------------------------------------------------------- > > Key: CAMEL-1218 > URL: https://issues.apache.org/activemq/browse/CAMEL-1218 > Project: Apache Camel > Issue Type: Sub-task > Components: camel-core > Affects Versions: 1.5.0 > Reporter: Claus Ibsen > Assignee: Claus Ibsen > Priority: Minor > > The ErrorHandlerBuilder is global per route context so the DSL should only allow you to set it at highest level to avoid confusing end users. > So this should *not* be allowed: > {code} > from("direct:start") > .onException(MyTechnicalException.class).handled(true).end() > .to("bean:doSomething"); > {code} > But you need to do it as: > {code} > onException(MyTechnicalException.class).handled(true); > from("direct:start") > .to("bean:doSomething"); > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.