[android] Added No_Provider error in UI

This commit is contained in:
Александр Зацепин 2017-06-30 16:02:50 +03:00 committed by Arsentiy Milchakov
parent 44c32df6e5
commit ae033d5819
2 changed files with 4 additions and 1 deletions

View file

@ -232,6 +232,9 @@ public class RoutingPlanController extends ToolbarController
case RemoteError:
showError(R.string.dialog_taxi_error);
break;
case NoProvider:
showError(R.string.taxi_no_provider);
break;
default:
throw new AssertionError("Unsupported uber error: " + code);
}

View file

@ -107,7 +107,7 @@ public class TaxiManager
public enum ErrorCode
{
NoProducts, RemoteError
NoProducts, RemoteError, NoProvider
}
public interface TaxiListener