org.jsimpledb.parse.expr.EvalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-parse Show documentation
Show all versions of jsimpledb-parse Show documentation
JSimpleDB classes for parsing Java expressions.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.parse.expr;
/**
* Thrown when an error occurs evaluating an expression.
*/
@SuppressWarnings("serial")
public class EvalException extends RuntimeException {
public EvalException() {
}
public EvalException(String message) {
super(message);
}
public EvalException(Throwable cause) {
super(cause);
}
public EvalException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy