comsave/safe-salesforce-saver-bundle

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

Summary

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

namespace Comsave\SafeSalesforceSaverBundle\Exception;

class SafeSalesforceSaverException extends \Exception
{
    protected $model;

    /**
     * @return string
     */
    public function getModel(): string
    {
        return $this->model;
    }

    /**
     * @param string $model
     */
    public function setModel(string $model): void
    {
        $this->model = $model;
    }
}