All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dynamide.interpreters.AlertError Maven / Gradle / Ivy

Go to download

RestReplay is a dynamide.org utility to send REST requests to the services layer (including JSON, XML, and multipart XML requests), read responses, validate responses, and compare the resulting payloads with templates.

There is a newer version: 1.0.27
Show newest version
package org.dynamide.interpreters;

import java.util.List;

public class AlertError extends Error {
    public AlertError(String msg, Alert triggeringAlert, List allAlerts){
        super(msg);
        this.triggeringAlert = triggeringAlert;
        this.allAlerts = allAlerts;
    }
    public Alert triggeringAlert;
    public List allAlerts;
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy