Class StrategySelectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jakarta.persistence.PersistenceException
org.hibernate.HibernateException
org.hibernate.boot.registry.selector.spi.StrategySelectionException
- All Implemented Interfaces:
Serializable
Indicates a problem performing the selection/resolution.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStrategySelectionException
(String message) Constructs a StrategySelectionException using the specified message.StrategySelectionException
(String message, Throwable cause) Constructs a StrategySelectionException 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
-
StrategySelectionException
Constructs a StrategySelectionException using the specified message.- Parameters:
message
- A message explaining the exception condition.
-
StrategySelectionException
Constructs a StrategySelectionException using the specified message and cause.- Parameters:
message
- A message explaining the exception condition.cause
- The underlying cause.
-