HErrorpException未被onError()捕获

时间:2017-10-13 10:11:32

标签: android kotlin retrofit2 rx-java2 okhttp

我正在使用Retrofit2和RxJava2向后端服务器发出请求。当响应为200或201时,一切正常。当服务器的响应为409或503且抛出HttpException时,它不会被Observable的onError()捕获,并且应用程序崩溃。

我正在提出的请求是这样的:

@POST("users/sign-up")
fun register(@Body register: RegisterBody): Observable<User>

我发出请求的代码段(applySchedulers()仅适用subscribeOn()observeOn()):

api.register(body)
   .compose(applySchedulers())
   .subscribe(
        { user -> onNextRegister(user.id, email.toString(), password.toString()) },
        { error -> handleRegistrationError(error) })

抛出的异常如下:

 io.reactivex.exceptions.CompositeException: 2 exceptions occurred.
 ComposedException 1 : retrofit2.adapter.rxjava2.HttpException: HTTP 503 Unavailable
 ComposedException 2 : kotlin.NotImplementedError: An operation is not implemented: not implemented

即使我为Observable实施了onError(),如何防止应用崩溃?请注意,handleRegistrationError(error)中的代码仍在执行。

1 个答案:

答案 0 :(得分:2)

CompositeException表示实际问题在handleRegistrationError(error)范围内。不知何故,你做了一些导致

的事情
kotlin.NotImplementedError: An operation is not implemented: not implemented

很可能它与您实施为TODO()

的功能有关
fun TODO(): Nothing = throw NotImplementedError()

所以,只需实施此功能(或删除TODO())即可解决您的问题。