RuntimeError

external class RuntimeError(val message: String = definedExternally) : Throwable(source)

Constructs an exception object that is thrown due to an error that can occur at runtime, e.g., out of memory, could not compile shader, etc. If a function may throw this exception, the calling code should be prepared to catch it.

On the other hand, a DeveloperError indicates an exception due to a developer error, e.g., invalid argument, that usually indicates a bug in the calling code.

See also

Constructors

Link copied to clipboard
constructor(message: String = definedExternally)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open override val message: String

The error message for this exception.

Link copied to clipboard

'RuntimeError' indicating that this exception was thrown due to a runtime error.

Link copied to clipboard

The stack trace of this exception, if available.

Functions

Link copied to clipboard
open override fun toString(): String