> For the complete documentation index, see [llms.txt](https://docs.movesdk.com/move-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.movesdk.com/move-platform/sdk/models/movegeocodeerror.md).

# MoveGeocodeError

{% tabs %}
{% tab title="Android" %}

```kotlin
enum class MoveGeocodeError {
    RESOLVE_FAILED,
    SERVICE_UNREACHABLE,
    THRESHOLD_REACHED,
}
```

{% endtab %}

{% tab title="iOS" %}

```swift
enum MoveGeocodeError: Error {
    case resolveFailed
    case thresholdReached
    case serviceUnreachable
}
```

{% endtab %}

{% tab title="Flutter" %}

```dart
import 'package:movesdk/io/dolphin/move/move_geocode_result.dart';// Some code
```

```dart
enum MoveGeocodeError {
    resolveFailed,
    thresholdReached,
    serviceUnreachable,
}
```

{% endtab %}
{% endtabs %}

<table data-header-hidden><thead><tr><th width="211.5"></th><th></th></tr></thead><tbody><tr><td><strong>MoveGeocodeError</strong></td><td></td></tr><tr><td>resolveFailed</td><td>Error indicating that the passed coordinates can't be resolved.</td></tr><tr><td>thresholdReached</td><td>Maximum defined threshold reached. This threshold is not changeable.</td></tr><tr><td>serviceUnreachable</td><td>Error indicating that MOVE SDK server is unreachable.</td></tr></tbody></table>
