Class StrategySelectionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.boot.registry.selector.spi.StrategySelectionException
-
- All Implemented Interfaces:
java.io.Serializable
public class StrategySelectionException extends HibernateException
Indicates a problem performing the selection/resolution.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description StrategySelectionException(java.lang.String message)
Constructs a StrategySelectionException using the specified message.StrategySelectionException(java.lang.String message, java.lang.Throwable cause)
Constructs a StrategySelectionException using the specified message and cause.
-
-
-
Constructor Detail
-
StrategySelectionException
public StrategySelectionException(java.lang.String message)
Constructs a StrategySelectionException using the specified message.- Parameters:
message
- A message explaining the exception condition.
-
StrategySelectionException
public StrategySelectionException(java.lang.String message, java.lang.Throwable cause)
Constructs a StrategySelectionException using the specified message and cause.- Parameters:
message
- A message explaining the exception condition.cause
- The underlying cause.
-
-