friendica/src/Core/Cache/Exception/InvalidCacheDriverException...

14 lines
257 B
PHP

<?php
namespace Friendica\Core\Cache\Exception;
use Throwable;
class InvalidCacheDriverException extends \RuntimeException
{
public function __construct($message = "", Throwable $previous = null)
{
parent::__construct($message, 500, $previous);
}
}