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

org.testcontainers.containers.ContainerFetchException Maven / Gradle / Ivy

There is a newer version: 1.20.1
Show newest version
package org.testcontainers.containers;

/**
 * Created by rnorth on 15/10/2015.
 */
public class ContainerFetchException extends RuntimeException {
    public ContainerFetchException(String s, Exception e) {
        super(s, e);
    }

    public ContainerFetchException(String s) {
        super(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy