discord-jadx/app/src/main/java/kotlin/reflect/full/NoSuchPropertyException.java

19 lines
599 B
Java

package kotlin.reflect.full;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* compiled from: exceptions.kt */
public final class NoSuchPropertyException extends Exception {
public NoSuchPropertyException() {
this(null, 1, null);
}
public NoSuchPropertyException(Exception exc) {
super(exc);
}
/* JADX INFO: this call moved to the top of the method (can break code semantics) */
public /* synthetic */ NoSuchPropertyException(Exception exc, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? null : exc);
}
}