You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2016/08/20 13:38:20 UTC

[jira] [Commented] (CAMEL-10253) NullPointer in ThrowExceptionProcessor.getTraceLabel

    [ https://issues.apache.org/jira/browse/CAMEL-10253?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15429382#comment-15429382 ] 

Claus Ibsen commented on CAMEL-10253:
-------------------------------------

Thanks can you create a patch or better yet a github PR to fix this?
http://camel.apache.org/contributing

> NullPointer in ThrowExceptionProcessor.getTraceLabel
> ----------------------------------------------------
>
>                 Key: CAMEL-10253
>                 URL: https://issues.apache.org/jira/browse/CAMEL-10253
>             Project: Camel
>          Issue Type: Bug
>          Components: camel-core
>    Affects Versions: 2.17.3
>            Reporter: peninou
>             Fix For: 2.18.0, 2.17.4
>
>
> When using
> {code:title=ProcessorDefinition.java|borderStyle=solid}
>  throwException(Class<? extends Exception> type, String message) 
> {code}
> to define a Exception and having the tracing set to *True* in Camel context, if  an exception occurred, it will call 
> {code:title=ThrowExceptionProcessor.java|borderStyle=solid}
>   public String getTraceLabel() {
>         return "throwException[" + this.exception.getClass().getSimpleName() + "]";
>     }
> {code}
> But this.exception is null.
> A patch could be:
> {code:title=ThrowExceptionProcessor.java|borderStyle=solid}
>     public String getTraceLabel() {
>         String className= this.exception==null?this.type.getSimpleName():this.exception.getClass().getSimpleName();
>         return "throwException[" + className + "]";
>     }
> {code}
>  



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)