Package org.impalaframework.exception

Examples of org.impalaframework.exception.OperationNotPermittedException


     */
  protected final void isReloadPermitted(ModuleDefinition definition) {
    if (definition != null) {
   
      if (!definition.isReloadable() && enforceReloadability) {
          throw new OperationNotPermittedException("Cannot reload module as module is marked as non-reloadable");
        }
    }
  }
View Full Code Here

TOP

Related Classes of org.impalaframework.exception.OperationNotPermittedException

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.