- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
9 lines
304 B
Java
9 lines
304 B
Java
package kotlin.jvm;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public class KotlinReflectionNotSupportedError extends Error {
|
|
public KotlinReflectionNotSupportedError() {
|
|
super("Kotlin reflection implementation is not found at runtime. Make sure you have kotlin-reflect.jar in the classpath");
|
|
}
|
|
}
|