---
title: "GltfLoadException"
description: "Exception thrown when a glTF model fails to load."
type: "class"
lastmod: "2026-05-08T01:17:01.381960Z"
---
## API Reference

> Source set: Android

```kotlin
public class GltfLoadException(
    message: String? = "Failed to load glTF model",
    cause: Throwable? = null,
) : RuntimeException(message, cause)
```

Exception thrown when a glTF model fails to load.

#### Parameters

| | |
| --- | --- |
| message | the detail message. |
| cause | the underlying cause of the failure. |
