org.testcontainers.exception.ConnectionCreationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-commons Show documentation
Show all versions of database-commons Show documentation
Isolated container management for Java code testing
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);
}
}