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

com.intuit.fuzzymatcher.exception.MatchException Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.intuit.fuzzymatcher.exception;

public class MatchException extends RuntimeException {

    public MatchException() {
        super();
    }

    public MatchException(String message) {
        super(message);
    }

    public MatchException(Throwable t) {
        super(t);
    }

    public MatchException(String message, Throwable t) {
        super(message, t);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy