mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 18:44:26 +02:00
13 lines
257 B
PHP
13 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);
|
|
}
|
|
}
|