Package org.jboss.cache.config

Examples of org.jboss.cache.config.LegacyConfigurationException


   protected void assertNotLegacyElement(Element e)
   {
      // is this a legacy element?!?
      String name = e.getNodeName();
      if ("config".equals(name)) throw new LegacyConfigurationException("Legacy element encountered when using parser " + getClass().getSimpleName());
   }
View Full Code Here


   protected void assertNotLegacyElement(Element e)
   {
      // is this a legacy element?!?
      String name = e.getNodeName();
      if ("config".equals(name)) throw new LegacyConfigurationException("Legacy element encountered when using parser " + getClass().getSimpleName());
   }
View Full Code Here

   protected void assertNotLegacyElement(Element e)
   {
      // is this a legacy element?!?
      String name = e.getNodeName();
      if ("config".equals(name)) throw new LegacyConfigurationException("Legacy element encountered when using parser " + getClass().getSimpleName());
   }
View Full Code Here

TOP

Related Classes of org.jboss.cache.config.LegacyConfigurationException

Copyright © 2018 www.massapicom. 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.