Google is committed to advancing racial equity for Black communities. See how.
Added in API level 1

IncompatibleClassChangeError

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

Thrown when an incompatible class change has occurred to some class definition. The definition of some class, on which the currently executing method depends, has since changed.

Summary

Public constructors

Constructs an IncompatibleClassChangeError with no detail message.

Constructs an IncompatibleClassChangeError with the specified detail message.

Public constructors

<init>

Added in API level 1
IncompatibleClassChangeError()

Constructs an IncompatibleClassChangeError with no detail message.

<init>

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

Constructs an IncompatibleClassChangeError with the specified detail message.

Parameters
s String!: the detail message.