Caught Throwable or Exception is null

后端 未结 5 1112
后悔当初
后悔当初 2021-01-19 01:45

A similar question was asked here for two times and never there was any answer. Or the answer was: \"it is impossible!\" Sorry, it is possible too much:

         


        
5条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-19 02:17

    Android does not always throws exception in a Throwable. It actually drives all the exceptions to the catLog. There you will find details of your exceptions even if in the catch block your exception is null.

    You can easily access the catlog console from eclipse and filter to view the errors only

    UPDATE:

    Your breakpoint should be inside the catch block

提交回复
热议问题