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

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

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

/**
 * AN exception that may be raised during launch of a container.
 */
public class ContainerLaunchException extends RuntimeException {

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

    public ContainerLaunchException(String message, Exception exception) {
        super(message, exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy