handle()

in LambdaFunction1/index.js [165:172]


  handle(handlerInput, error) {
    console.log(`Error handled: ${error.message}`);

    return handlerInput.responseBuilder
      .speak('Sorry, Please say again.')
      .reprompt('Sorry,Can you repeat?.')
      .getResponse();
  },