com.dkanejs.maven.plugins.docker.compose.DockerComposeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-compose-maven-plugin Show documentation
Show all versions of docker-compose-maven-plugin Show documentation
Maven plugin for docker-compose
package com.dkanejs.maven.plugins.docker.compose;
class DockerComposeException extends Exception {
DockerComposeException(String message) {
super(message);
}
}