Package org.hibernate.exception.spi
Interface Configurable
-
public interface ConfigurableThe Configurable interface defines the contract for SQLExceptionConverter impls that want to be configured prior to usage given the currently defined Hibernate properties.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(java.util.Properties properties)Configure the component, using the given settings and properties.
-
-
-
Method Detail
-
configure
void configure(java.util.Properties properties) throws HibernateExceptionConfigure the component, using the given settings and properties.- Parameters:
properties- All defined startup properties.- Throws:
HibernateException- Indicates a configuration exception.
-
-