9055彩票.apk(点击下载) / d.java


package io.reactivex.c;

import io.reactivex.annotations.NonNull;

/* compiled from: OnErrorNotImplementedException */
public final class d extends RuntimeException {
    /* JADX INFO: super call moved to the top of the method (can break code semantics) */
    public d(String str, @NonNull Throwable th) {
        super(str, th == null ? new NullPointerException() : th);
    }

    public d(@NonNull Throwable th) {
        this("The exception was not handled due to missing onError handler in the subscribe() method call. Further reading: https://github.com/ReactiveX/RxJava/wiki/Error-Handling | " + th, th);
    }
}