protected void Default(Transport_SendFSMContext context) {
      if (context.getDebugFlag() == true) {
        PrintStream str = context.getDebugStream();

        str.println("TRANSITION   : Default");
      }

      throw (new statemap.TransitionUndefinedException(
          "State: " + context.getState().getName() + ", Transition: " + context.getTransition()));
    }