In my app I want to handle exceptions coming from Stream<LocationMarkerPosition?> but I cannot use following code because all exceptions are not exported:
if (error is ServiceDisabledException) {
...
}
So I have created this PR. Also In my opinion and in others the exceptions that can be thrown out to outside should be public.
In my app I want to handle exceptions coming from
Stream<LocationMarkerPosition?>
but I cannot use following code because all exceptions are not exported:So I have created this PR. Also In my opinion and in others the exceptions that can be thrown out to outside should be public.