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

org.testcontainers.exception.ConnectionCreationException Maven / Gradle / Ivy

There is a newer version: 1.20.4
Show newest version
package org.testcontainers.exception;

/**
 * Inability to create connection to the database
 */
public class ConnectionCreationException extends RuntimeException {

    public ConnectionCreationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy