| 1 | <?php |
||
| 11 | class ZohoCRMUpdateException extends ZohoCRMException |
||
| 12 | { |
||
| 13 | private $failedBeans; |
||
| 14 | private $errorMessage = 'Some beans could not be updated in Zoho.'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param \SplObjectStorage $failedBeans Key: the bean that failed. Value: the associated exception. |
||
| 18 | */ |
||
| 19 | public function __construct(\SplObjectStorage $failedBeans) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return \SplObjectStorage Key: the bean that failed. Value: the associated exception. |
||
| 40 | */ |
||
| 41 | public function getFailedBeans() |
||
| 45 | } |
||
| 46 |