public AbstractServerUpdateActionResult(UUID id, Result result, Throwable deploymentException) {
   if (id == null) throw ControllerClientLogger.ROOT_LOGGER.nullVar("id");
   if (result == null) throw ControllerClientLogger.ROOT_LOGGER.nullVar("result");
   this.id = id;
   this.result = result;
   this.deploymentException = deploymentException;
 }