Package ch.bbv.fsm.dsl

Examples of ch.bbv.fsm.dsl.IllegalActionClassDefinitionException


   */
  private void checkAction(
      final Class<? extends Action<TStateMachine, TState, TEvent>> action) {

    if (!isValidActionDefinition(action)) {
      throw new IllegalActionClassDefinitionException(
          "Action class "
              + action.getName()
              + " must be either static or not have a declaring class. The default constructor must also be accesible.",
          null);
    }
View Full Code Here

TOP

Related Classes of ch.bbv.fsm.dsl.IllegalActionClassDefinitionException

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.