
flabbergast.FailureComputation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flabbergast-runtime Show documentation
Show all versions of flabbergast-runtime Show documentation
The Runtime for the Flabbergast Configuration Language on the JVM.
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