> 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/moveconfigurationerror.md).

# MoveConfigurationError

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

```kotlin
sealed class MoveConfigurationError {
    object ServiceUnreachable : MoveConfigurationError()
}
```

{% endtab %}

{% tab title="iOS" %}

```swift
enum MoveConfigurationError {   
    case serviceUnreachable
}
```

{% endtab %}
{% endtabs %}

| **Move Configuration Error** |                                   |
| ---------------------------- | --------------------------------- |
| ServiceUnreachable           | Bad connection or service failure |
