package com.ironsource.environment.workerthread; import java.util.concurrent.Callable; /* loaded from: classes4.dex */ public abstract class WorkerResult { public static final class Canceled extends WorkerResult { public Callable callable; public Canceled(Callable callable) { super(); this.callable = callable; } } public static final class Completed extends WorkerResult { public T data; public Completed(T t) { super(); this.data = t; } } public static final class Failed extends WorkerResult { public Callable callable; public Exception exception; public Failed(Callable callable, Exception exc) { super(); this.callable = callable; this.exception = exc; } } private WorkerResult() { } }