cloud.localstack.docker.exception.LocalstackDockerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
The newest version!
package cloud.localstack.docker.exception;
public class LocalstackDockerException extends RuntimeException {
public LocalstackDockerException(String msg, Throwable cause) {
super(msg, cause);
}
}