com.github.jalasoft.expression.czech.exception.IdentifierException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of czech-bool-expression Show documentation
Show all versions of czech-bool-expression Show documentation
This project provides an easy way of reading boolean expressions written in Czech language
package com.github.jalasoft.expression.czech.exception;
public final class IdentifierException extends RuntimeException {
private final String identifier;
public IdentifierException(String identifier, String message) {
super(message);
this.identifier = identifier;
}
public String identifier() {
return identifier;
}
}