org.jclarion.clarion.lang.ClarionCompileError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clarion-runtime Show documentation
Show all versions of clarion-runtime Show documentation
JClarion runtime environment
package org.jclarion.clarion.lang;
public class ClarionCompileError extends RuntimeException
{
private static final long serialVersionUID = 4311569365306703898L;
public ClarionCompileError(String name)
{
super(name);
}
public ClarionCompileError(String name,Throwable base)
{
super(name,base);
}
public ClarionCompileError(Throwable base)
{
super(base);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy