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
public class ClassLoadingException extends HibernateException
Indicates a problem performing class loading.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClassLoadingException(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 Detail
-
ClassLoadingException
public ClassLoadingException(String message, Throwable cause)
Constructs a ClassLoadingException using the specified message and cause.- Parameters:
message
- A message explaining the exception condition.cause
- The underlying cause
-
ClassLoadingException
public ClassLoadingException(String message)
Constructs a ClassLoadingException using the specified message.- Parameters:
message
- A message explaining the exception condition.
-
-