Class ClassLoadingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.persistence.PersistenceException
org.hibernate.HibernateException
org.hibernate.boot.registry.classloading.spi.ClassLoadingException
- All Implemented Interfaces:
Serializable
Indicates a problem performing class loading.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionClassLoadingException
(String message) Constructs a ClassLoadingException using the specified message.ClassLoadingException
(String message, Throwable cause) Constructs a ClassLoadingException using the specified message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ClassLoadingException
Constructs a ClassLoadingException using the specified message and cause.- Parameters:
message
- A message explaining the exception condition.cause
- The underlying cause
-
ClassLoadingException
Constructs a ClassLoadingException using the specified message.- Parameters:
message
- A message explaining the exception condition.
-