Class ClassCreationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
eu.cloudnetservice.driver.network.rpc.exception.ClassCreationException
- All Implemented Interfaces:
Serializable
A runtime exception which gets thrown when an exception occurs during runtime code generation.
- Since:
- 4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionClassCreationException(@NonNull String message, @NonNull Throwable cause) Constructs a new class creation exception instance. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClassCreationException
Constructs a new class creation exception instance.- Parameters:
message- the detailed message why the exception occurred.cause- the original exception thrown during the class creation.- Throws:
NullPointerException- if either the given message or exception is null.
-