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

net.tokensmith.parser.builder.exception.ConstructException Maven / Gradle / Ivy

package net.tokensmith.parser.builder.exception;

public class ConstructException extends RuntimeException {
    private String value;

    public ConstructException(String message, Throwable cause, String value) {
        super(message, cause);
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy