Package io.github.classgraph
Class ClassGraphException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
io.github.classgraph.ClassGraphException
- All Implemented Interfaces:
Serializable
An unchecked exception that is thrown when an error state occurs or an unhandled exception is caught during
scanning.
(Extends IllegalArgumentException
, which extends RuntimeException
, so either of the more generic
exceptions may be caught.)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final long
serialVersionUID. -
Constructor Summary
ConstructorsConstructorDescriptionClassGraphException
(String message) Constructor.ClassGraphException
(String message, Throwable cause) Constructor. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
static final long serialVersionUIDserialVersionUID.- See Also:
-
-
Constructor Details
-
ClassGraphException
ClassGraphException(String message) Constructor.- Parameters:
message
- the message
-
ClassGraphException
Constructor.- Parameters:
message
- the messagecause
- the cause
-