You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "peninou (JIRA)" <ji...@apache.org> on 2016/08/18 15:26:22 UTC

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

peninou created CAMEL-10253:
-------------------------------

             Summary: 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


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)