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

flabbergast.FailureComputation Maven / Gradle / Ivy

The newest version!
package flabbergast;

public class FailureComputation extends Computation {
    private String message;
    private SourceReference source_reference;
    public FailureComputation(TaskMaster task_master,
                              SourceReference reference, String message) {
        super(task_master);
        this.source_reference = reference;
        this.message = message;
    }

    @Override
    protected void run() {
        task_master.reportOtherError(source_reference, message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy