1 package dst.ass3.elastic;
4 * Exception indicating that the ContainerService encountered an error when performing a task.
6 public class ContainerException extends Exception {
8 public ContainerException() {
11 public ContainerException(String message) {
15 public ContainerException(String message, Throwable cause) {
16 super(message, cause);
19 public ContainerException(Throwable cause) {