Spaces:
No application file
No application file
File size: 338 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php
namespace Mautic\CoreBundle\Exception;
class InvalidDecodedStringException extends \InvalidArgumentException
{
public function __construct(string $string = '', int $code = 0, \Throwable $previous = null)
{
parent::__construct(sprintf('The string %s is not a serialized array', $string), $code, $previous);
}
}
|