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

coursierapi.error.FetchError Maven / Gradle / Ivy

The newest version!
package coursierapi.error;

public abstract class FetchError extends CoursierError {
    FetchError(String message) {
        super(message);
    }

    public static FetchError of(String message) {
        return new FetchError(message) {
        };
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy