package A0;

import P2.w;

/* JADX INFO: loaded from: classes.dex */
public abstract class f extends Exception {
    /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
    public f(String str) {
        super(str);
        w.d(str, "Detail message must not be empty");
    }

    /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
    public f(String str, Throwable th) {
        super(str, th);
        w.d(str, "Detail message must not be empty");
    }
}
