rangoo94/easen-tools

View on GitHub
packages/core/src/ServiceError/ServiceActionDispatcherNotReadyError.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
const createServiceErrorSubClass = require('../createServiceErrorSubClass')

/**
 * Error, which says that ActionDispatcher (i.e. service broker),
 * wasn't ready yet to handle this action.
 *
 *
 * @class ServiceActionDispatcherNotReadyError
 * @extends ServiceError
 */
module.exports = createServiceErrorSubClass(
  'ServiceActionDispatcherNotReadyError',
  502
)