src/lambdas/modular_api_handler/processors/tenant_in_region_processor.py [75:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tenant = self._get_tenant(name, event.customer_id)
        if not tenant:
            _LOG.debug(f'Tenant \'{name}\' does not exist.')
            raise ResponseFactory(HTTPStatus.NOT_FOUND).message(
                f'Tenant \'{name}\' does not exist.'
            ).exc()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/lambdas/modular_api_handler/processors/tenant_in_region_processor.py [89:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        tenant = self._get_tenant(name, event.customer_id)
        if not tenant:
            _LOG.debug(f'Tenant \'{name}\' does not exist.')
            raise ResponseFactory(HTTPStatus.NOT_FOUND).message(
                f'Tenant \'{name}\' does not exist.'
            ).exc()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



