com.almworks.jira.structure.api.util.CallableE Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of structure-api Show documentation
Show all versions of structure-api Show documentation
Public API for the Structure Plugin for JIRA
The newest version!
package com.almworks.jira.structure.api.util;
import java.util.concurrent.Callable;
public interface CallableE extends Callable {
@Override
V call() throws E;
}