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

prompto.compiler.CompilerException Maven / Gradle / Ivy

The newest version!
package prompto.compiler;


@SuppressWarnings("serial")
public class CompilerException extends RuntimeException {

	public CompilerException(Exception e) {
		super(e);
	}

	public CompilerException(String msg) {
		super(msg);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy