Added in API level 1

UnsatisfiedLinkError

open class UnsatisfiedLinkError : LinkageError
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Error
   ↳ java.lang.LinkageError
   ↳ java.lang.UnsatisfiedLinkError

Thrown if the Java Virtual Machine cannot find an appropriate native-language definition of a method declared native.

Summary

Public constructors

Constructs an UnsatisfiedLinkError with no detail message.

Constructs an UnsatisfiedLinkError with the specified detail message.

Public constructors

UnsatisfiedLinkError

Added in API level 1
UnsatisfiedLinkError()

Constructs an UnsatisfiedLinkError with no detail message.

UnsatisfiedLinkError

Added in API level 1
UnsatisfiedLinkError(s: String!)

Constructs an UnsatisfiedLinkError with the specified detail message.

Parameters
s String!: the detail message.