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

com.mageddo.tobby.internal.utils.UncheckedExecutionException Maven / Gradle / Ivy

There is a newer version: 2.1.6-alpha
Show newest version
package com.mageddo.tobby.internal.utils;

import java.util.concurrent.ExecutionException;

public class UncheckedExecutionException extends RuntimeException {

  private final ExecutionException executionException;

  public UncheckedExecutionException(ExecutionException executionException) {
    super(executionException);
    this.executionException = executionException;
  }

  public ExecutionException getExecutionException() {
    return executionException;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy