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

IncompatibleClassChangeError

IncompatibleClassChangeError()

Constructs an IncompatibleClassChangeError with no detail message.

IncompatibleClassChangeError

IncompatibleClassChangeError(s: String!)

Constructs an IncompatibleClassChangeError with the specified detail message.

Parameters
s String!: the detail message.

Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.

Last updated 2025-02-10 UTC.