All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jalasoft.expression.czech.exception.IdentifierException Maven / Gradle / Ivy

Go to download

This project provides an easy way of reading boolean expressions written in Czech language

There is a newer version: 1.0.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy