- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
15 lines
377 B
Java
15 lines
377 B
Java
package com.unity3d.ads.adplayer;
|
|
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
|
|
/* loaded from: classes4.dex */
|
|
public abstract class AdPlayerError extends Exception {
|
|
public /* synthetic */ AdPlayerError(String str, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this(str);
|
|
}
|
|
|
|
private AdPlayerError(String str) {
|
|
super(str);
|
|
}
|
|
}
|