// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package software.amazon.lambda.durable.exception;
import software.amazon.awssdk.services.lambda.model.Operation;
public class InvokeException extends DurableOperationException {
public InvokeException(Operation operation) {
super(
operation,
operation.chainedInvokeDetails() != null
? operation.chainedInvokeDetails().error()
: null);
}
}