FileDocCategorySizeDatePackage
UnsupportedClassVersionError.javaAPI DocJava SE 5 API885Fri Aug 26 14:57:04 BST 2005java.lang

UnsupportedClassVersionError

public class UnsupportedClassVersionError extends ClassFormatError
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.
since
1.2

Fields Summary
Constructors Summary
public UnsupportedClassVersionError()
Constructs a UnsupportedClassVersionError with no detail message.

	super();
    
public UnsupportedClassVersionError(String s)
Constructs a UnsupportedClassVersionError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary