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

Thrown when the Java Virtual Machine attempts to read a class file and determines that the major and minor version numbers in the file are not supported.

Summary

Public constructors

Constructs a UnsupportedClassVersionError with no detail message.

Constructs a UnsupportedClassVersionError with the specified detail message.

Public constructors

UnsupportedClassVersionError

UnsupportedClassVersionError()

Constructs a UnsupportedClassVersionError with no detail message.

UnsupportedClassVersionError

UnsupportedClassVersionError(s: String!)

Constructs a UnsupportedClassVersionError 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.