Commit 6b8c77af by sikang

Throwable to Exception

parent e538939d
...@@ -89,7 +89,7 @@ public abstract class HttpObserver<T> implements Observer<T> { ...@@ -89,7 +89,7 @@ public abstract class HttpObserver<T> implements Observer<T> {
} }
} }
} catch (Throwable e) { } catch (Exception e) {
onError(Error.APP_ERROR, "Error: " + msg); onError(Error.APP_ERROR, "Error: " + msg);
} }
if (disposable != null) if (disposable != null)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment