17 lines
1.1 KiB
Java
17 lines
1.1 KiB
Java
package kotlin.reflect.full;
|
|
|
|
import kotlin.Metadata;
|
|
import kotlin.SinceKotlin;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
@SinceKotlin(version = "1.1")
|
|
@Metadata(d1 = {"\u0000\u0016\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\b\u0007\u0018\u00002\u00060\u0001j\u0002`\u0002B\r\u0012\u0006\u0010\u0003\u001a\u00020\u0004¢\u0006\u0002\u0010\u0005¨\u0006\u0006"}, d2 = {"Lkotlin/reflect/full/IllegalPropertyDelegateAccessException;", "Ljava/lang/Exception;", "Lkotlin/Exception;", "cause", "Ljava/lang/IllegalAccessException;", "(Ljava/lang/IllegalAccessException;)V", "kotlin-reflection"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
|
/* loaded from: classes3.dex */
|
|
public final class IllegalPropertyDelegateAccessException extends Exception {
|
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
|
public IllegalPropertyDelegateAccessException(IllegalAccessException cause) {
|
|
super("Cannot obtain the delegate of a non-accessible property. Use \"isAccessible = true\" to make the property accessible", cause);
|
|
Intrinsics.checkNotNullParameter(cause, "cause");
|
|
}
|
|
}
|