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
ConstructorsConstructorDescriptionHibernateError(String message) ConstructsHibernateErrorwith the condition message.HibernateError(String message,Throwable cause) ConstructsHibernateErrorwith 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
ConstructsHibernateErrorwith the condition message.- Parameters:
message- Message explaining the exception/error condition
HibernateError
ConstructsHibernateErrorwith the condition message and cause.- Parameters:
message- Message explaining the exception/error conditioncause- The underlying cause.