Select Git revision
dropNamesCLP.Rd
-
Mayo Roettger authored
maintainer change version 1.2.9; added documentation files; changed return value in C function getHitMaximumIterations
Mayo Roettger authoredmaintainer change version 1.2.9; added documentation files; changed return value in C function getHitMaximumIterations
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
VOParseException.java 347 B
package de.prob.voparser;
public class VOParseException extends Exception {
public enum ErrorType {
PARSING, SCOPING, TYPECHECKING
}
private ErrorType errorType;
public VOParseException(String message, ErrorType errorType) {
super(message);
this.errorType = errorType;
}
public ErrorType getErrorType() {
return errorType;
}
}