Package org.hibernate
Class HibernateError
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ExecutionException
Marks a group of exceptions that generally indicate an internal Hibernate error or bug.
- See Also:
-
Constructor Summary
ConstructorDescriptionHibernateError
(String message) ConstructsHibernateError
with the condition message.HibernateError
(String message, Throwable cause) ConstructsHibernateError
with the condition 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
-
HibernateError
ConstructsHibernateError
with the condition message.- Parameters:
message
- Message explaining the exception/error condition
-
HibernateError
ConstructsHibernateError
with the condition message and cause.- Parameters:
message
- Message explaining the exception/error conditioncause
- The underlying cause.
-