blob: 831665f4203956d40d6287d9a231e1182303d995 [file] [log] [blame]
package org.jetbrains.android.importDependencies;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* @author Eugene.Kudelevsky
*/
abstract class ImportDependenciesTask {
@Nullable
public abstract Exception perform();
@NotNull
public abstract String getTitle();
}