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

io.github.iamaldren.exceptions.ParsingException Maven / Gradle / Ivy

package io.github.iamaldren.exceptions;

public class ParsingException extends Exception {

    private String message;

    public ParsingException(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy