Get External Task Log Error Details
Retrieves the corresponding error details of the passed historic external task log by id.
Method
GET /history/external-task-log/{id}/error-details
Parameters
Path Parameters
Name | Description |
---|---|
id | The id of the historic external task log to get the error details for. |
Result
The result is the corresponding error details as plain text.
Response Codes
Code | Media type | Description |
---|---|---|
200 | text/plain | Request successful. |
404 | text/plain | Historic external task log with given id does not exist. See the Introduction for the error response format. |
Example
Request
GET history/external-task-log/someId/error-details
Response
java.lang.RuntimeException: A exception message!
at org.camunda.bpm.pa.service.FailingDelegate.execute(FailingDelegate.java:10)
at org.camunda.bpm.engine.impl.delegate.JavaDelegateInvocation.invoke(JavaDelegateInvocation.java:34)
at org.camunda.bpm.engine.impl.delegate.DelegateInvocation.proceed(DelegateInvocation.java:37)
...