org.snapscript.compile.verify.VerifyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap Show documentation
Show all versions of snap Show documentation
Dynamic scripting for the JVM
package org.snapscript.compile.verify;
import java.util.List;
import org.snapscript.core.InternalException;
public class VerifyException extends InternalException {
private final List errors;
public VerifyException(String message, List errors) {
super(message);
this.errors = errors;
}
public List getErrors() {
return errors;
}
}