dolibarr/htdocs/includes/symfony/var-dumper/Exception/ThrowingCasterException.php

27 lines
654 B
PHP
Raw Normal View History

2020-09-07 21:18:26 +02:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\VarDumper\Exception;
/**
* @author Nicolas Grekas <p@tchwork.com>
*/
class ThrowingCasterException extends \Exception
{
/**
2020-09-08 02:59:49 +02:00
* @param \Exception $prev The exception thrown from the caster
2020-09-07 21:18:26 +02:00
*/
2020-09-08 02:59:49 +02:00
public function __construct(\Exception $prev)
2020-09-07 21:18:26 +02:00
{
2020-09-08 02:59:49 +02:00
parent::__construct('Unexpected '.get_class($prev).' thrown from a caster: '.$prev->getMessage(), 0, $prev);
2020-09-07 21:18:26 +02:00
}
}