All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebean.docker.commands.CommandException Maven / Gradle / Ivy

package io.ebean.docker.commands;

import io.ebean.docker.commands.process.ProcessResult;

public class CommandException extends RuntimeException {

  private ProcessResult result;

  public CommandException(String message, ProcessResult result) {
    super(message);
    this.result = result;
  }

  public ProcessResult getResult() {
    return result;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy