forked from organicmaps/organicmaps
[android] Added No_Provider error in UI
This commit is contained in:
parent
44c32df6e5
commit
ae033d5819
2 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -107,7 +107,7 @@ public class TaxiManager
|
|||
|
||||
public enum ErrorCode
|
||||
{
|
||||
NoProducts, RemoteError
|
||||
NoProducts, RemoteError, NoProvider
|
||||
}
|
||||
|
||||
public interface TaxiListener
|
||||
|
|
Loading…
Add table
Reference in a new issue