Examples of StrategySelectionException


Examples of org.hibernate.boot.registry.selector.spi.StrategySelectionException

      // not good form...
      log.debug( "Registering non-interface strategy : " + strategyRegistration.getStrategyRole().getName()  );
    }

    if ( ! strategyRegistration.getStrategyRole().isAssignableFrom( strategyRegistration.getStrategyImplementation() ) ) {
      throw new StrategySelectionException(
          "Implementation class [" + strategyRegistration.getStrategyImplementation().getName()
              + "] does not implement strategy interface ["
              + strategyRegistration.getStrategyRole().getName() + "]"
      );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.