src/main/java/com/uber/cadence/workflow/CancelExternalWorkflowException.java [34:41]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public CancelExternalWorkflowException(
      long eventId,
      WorkflowExecution signaledExecution,
      SignalExternalWorkflowExecutionFailedCause cause) {
    super(cause + " for signaledExecution=\"" + signaledExecution, eventId);
    this.signaledExecution = signaledExecution;
    this.failureCause = cause;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/uber/cadence/workflow/SignalExternalWorkflowException.java [31:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public SignalExternalWorkflowException(
      long eventId,
      WorkflowExecution signaledExecution,
      SignalExternalWorkflowExecutionFailedCause cause) {
    super(cause + " for signaledExecution=\"" + signaledExecution, eventId);
    this.signaledExecution = signaledExecution;
    this.failureCause = cause;
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



