mautic / app /bundles /CoreBundle /Exception /InvalidDecodedStringException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
338 Bytes
<?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);
}
}