Elastica\Exception\Bulk\ResponseException::getActionExceptionsAsString PHP Method

getActionExceptionsAsString() public method

    public function getActionExceptionsAsString()
    {
        $message = '';
        foreach ($this->getActionExceptions() as $actionException) {
            $message .= $actionException->getMessage() . PHP_EOL;
        }
        return $message;
    }