Package io.github.classgraph
Class Classfile.ClassfileFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- io.github.classgraph.Classfile.ClassfileFormatException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Classfile
static class Classfile.ClassfileFormatException extends java.io.IOExceptionThrown when a classfile's contents are not in the correct format.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static longserialVersionUIDserialVersionUID.
-
Constructor Summary
Constructors Constructor Description ClassfileFormatException(java.lang.String message)Constructor.ClassfileFormatException(java.lang.String message, java.lang.Throwable cause)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablefillInStackTrace()Speed up exception (stack trace is not needed for this exception).
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
serialVersionUID.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ClassfileFormatException
public ClassfileFormatException(java.lang.String message)
Constructor.- Parameters:
message- the message
-
ClassfileFormatException
public ClassfileFormatException(java.lang.String message, java.lang.Throwable cause)Constructor.- Parameters:
message- the messagecause- the cause
-
-