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

de.tla2b.exceptions.FrontEndException Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package de.tla2b.exceptions;

import tla2sany.modanalyzer.SpecObj;

@SuppressWarnings("serial")
public class FrontEndException extends TLA2BException{

	public SpecObj spec;
	public FrontEndException(String e){
		super(e);
	}

	public FrontEndException(String string, SpecObj spec) {
		super(string);
		this.spec = spec;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy