package q2; import java.util.concurrent.Executor; /* loaded from: classes.dex */ class m implements Executor { /* renamed from: a, reason: collision with root package name */ private final Executor f13437a; static class a implements Runnable { /* renamed from: a, reason: collision with root package name */ private final Runnable f13438a; a(Runnable runnable) { this.f13438a = runnable; } @Override // java.lang.Runnable public void run() { try { this.f13438a.run(); } catch (Exception e10) { u2.a.d("Executor", "Background execution failure.", e10); } } } m(Executor executor) { this.f13437a = executor; } @Override // java.util.concurrent.Executor public void execute(Runnable runnable) { this.f13437a.execute(new a(runnable)); } }