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

com.vtence.molecule.FailureReporter Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
package com.vtence.molecule;

public interface FailureReporter {

    public static FailureReporter IGNORE = new FailureReporter() {
        public void errorOccurred(Throwable error) {}
    };

    void errorOccurred(Throwable error);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy