1 package dst.ass3.elastic;
4 * Indicates that a container could not be found.
6 public class ContainerNotFoundException extends ContainerException {
8 public ContainerNotFoundException() {
11 public ContainerNotFoundException(String message) {
15 public ContainerNotFoundException(String message, Throwable cause) {
16 super(message, cause);
19 public ContainerNotFoundException(Throwable cause) {