com.pushtechnology.diffusion.client.features.ScriptException Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2017, 2023 DiffusionData Ltd., All Rights Reserved.
*
* Use is subject to licence terms.
*
* NOTICE: All information contained herein is, and remains the
* property of DiffusionData. The intellectual and technical
* concepts contained herein are proprietary to DiffusionData and
* may be covered by U.S. and Foreign Patents, patents in process, and
* are protected by trade secret or copyright law.
*******************************************************************************/
package com.pushtechnology.diffusion.client.features;
import java.util.List;
import com.pushtechnology.diffusion.client.types.ErrorReport;
/**
* Exception used to report problems evaluating a script.
*
* @author DiffusionData Limited
* @since 6.0
*/
public final class ScriptException extends ErrorReportsException {
private static final long serialVersionUID = -2963114912181779006L;
/**
* Constructor.
*/
public ScriptException(String message, List reports) {
super(message, reports);
}
}