package io.reactivex.rxjava3.exceptions; /* loaded from: classes6.dex */ public final class OnErrorNotImplementedException extends RuntimeException { private OnErrorNotImplementedException(String str, Throwable th) { super(str, th == null ? new NullPointerException() : th); } public OnErrorNotImplementedException(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 | ".concat(String.valueOf(th)), th); } }