Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.lang

Class ClassFormatError

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Error
      |
      +--java.lang.LinkageError
         |
         +--java.lang.ClassFormatError


public class ClassFormatError

extends LinkageError

A ClassFormatError is thrown when a Java Virtual Machine unable to read a class file because the file is corrupted or cannot be interpreted as a class file.

Author:

Constructor Summary

ClassFormatError()

Create an error without a message.
ClassFormatError(java.lang.String s)

Create an error with a message.

Constructor Details

ClassFormatError

public ClassFormatError()

Create an error without a message.


ClassFormatError

public ClassFormatError(java.lang.String s)

Create an error with a message.

Parameters: