TaskHandlerNotFoundException constructor

TaskHandlerNotFoundException(
  1. String handlerName
)

Implementation

TaskHandlerNotFoundException(this.handlerName)
    : super(
        message: 'Task handler "$handlerName" was not registered',
        code: 'HANDLER_NOT_FOUND',
      );