astra.ast.core.NoSuchASTRAClassException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of astra-compiler Show documentation
Show all versions of astra-compiler Show documentation
Core compiler artifact for the ASTRA Language
package astra.ast.core;
public class NoSuchASTRAClassException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = 458681102101062496L;
public NoSuchASTRAClassException(String msg) {
super(msg);
}
}