/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ package org.opensearch.dataprepper.expression; /** * @since 1.3 * Wrapper exception for any exception thrown while evaluating a statement */ public class ExpressionEvaluationException extends RuntimeException { public ExpressionEvaluationException(final String message, final Throwable cause) { super(message, cause); } }