Added in API level 1

LinkageError

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

Subclasses of LinkageError indicate that a class has some dependency on another class; however, the latter class has incompatibly changed after the compilation of the former class.

Summary

Public constructors

Constructs a LinkageError with no detail message.

Constructs a LinkageError with the specified detail message.

LinkageError(s: String!, cause: Throwable!)

Constructs a LinkageError with the specified detail message and cause.

Public constructors

LinkageError

Added in API level 1
LinkageError()

Constructs a LinkageError with no detail message.

LinkageError

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

Constructs a LinkageError with the specified detail message.

Parameters
s String!: the detail message.

LinkageError

Added in API level 1
LinkageError(
    s: String!,
    cause: Throwable!)

Constructs a LinkageError with the specified detail message and cause.

Parameters
s String!: the detail message.
cause Throwable!: the cause, may be null