Package org.objectweb.asm.test
Class ClassFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.objectweb.asm.test.ClassFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class ClassFormatException extends java.lang.RuntimeException
ARuntimeException
thrown byClassFile
when a class file is malformed.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description ClassFormatException(java.lang.String message)
Constructs a new ClassFormatException instance.ClassFormatException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ClassFormatException instance.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ClassFormatException
public ClassFormatException(java.lang.String message)
Constructs a new ClassFormatException instance.- Parameters:
message
- the detailed message of this exception.
-
ClassFormatException
public ClassFormatException(java.lang.String message, java.lang.Throwable cause)
Constructs a new ClassFormatException instance.- Parameters:
message
- the detailed message of this exception.cause
- the cause of this exception.
-
-