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

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

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 - 2025 Weber Informatics LLC | Privacy Policy