001package io.ebean.docker.commands;
002
003import io.ebean.docker.commands.process.ProcessResult;
004
005public class CommandException extends RuntimeException {
006
007  private ProcessResult result;
008
009  public CommandException(String message, ProcessResult result) {
010    super(message);
011    this.result = result;
012  }
013
014  public ProcessResult getResult() {
015    return result;
016  }
017}