public class

IllegalClassFormatException

extends Exception
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.instrument.IllegalClassFormatException

Class Overview

Thrown by an implementation of ClassFileTransformer.transform when its input parameters are invalid. This may occur either because the initial class file bytes were invalid or a previously applied transform corrupted the bytes.

Summary

Public Constructors
IllegalClassFormatException()
Constructs an IllegalClassFormatException with no detail message.
IllegalClassFormatException(String s)
Constructs an IllegalClassFormatException with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public IllegalClassFormatException ()

Constructs an IllegalClassFormatException with no detail message.

public IllegalClassFormatException (String s)

Constructs an IllegalClassFormatException with the specified detail message.

Parameters
s the detail message.