comsave/safe-salesforce-saver-bundle

View on GitHub
src/Comsave/SafeSalesforceSaverBundle/Exception/TimeoutException.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Comsave\SafeSalesforceSaverBundle\Exception;

class TimeoutException extends SafeSalesforceSaverException
{
    /**
     * @codeCoverageIgnore
     */
    public function __construct(string $model)
    {
        parent::__construct(sprintf('The time limit expired while trying to save to Salesforce. Serialized message of the failed call: %s', $model));
    }
}