
com.uber.cadence.internal.replay.ChildWorkflowTaskFailedException Maven / Gradle / Ivy
/*
* Copyright 2012-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Modifications copyright (C) 2017 Uber Technologies, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
* use this file except in compliance with the License. A copy of the License is
* located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.uber.cadence.internal.replay;
import com.uber.cadence.WorkflowExecution;
import com.uber.cadence.WorkflowType;
/** Internal. Do not catch or throw by application level code. */
@SuppressWarnings("serial")
public class ChildWorkflowTaskFailedException extends RuntimeException {
private final long eventId;
private final WorkflowExecution workflowExecution;
private final WorkflowType workflowType;
private final byte[] details;
public ChildWorkflowTaskFailedException(
long eventId,
WorkflowExecution workflowExecution,
WorkflowType workflowType,
String reason,
byte[] details) {
super(reason);
this.eventId = eventId;
this.workflowExecution = workflowExecution;
this.workflowType = workflowType;
this.details = details;
}
public long getEventId() {
return eventId;
}
public WorkflowExecution getWorkflowExecution() {
return workflowExecution;
}
public WorkflowType getWorkflowType() {
return workflowType;
}
public byte[] getDetails() {
return details;
}
public String getReason() {
return getMessage();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy