friendica/src/Core/Cache/Exception/CachePersistenceException.php

14 lines
255 B
PHP
Raw Normal View History

2021-10-26 21:44:29 +02:00
<?php
namespace Friendica\Core\Cache\Exception;
use Throwable;
class CachePersistenceException extends \RuntimeException
{
public function __construct($message = "", Throwable $previous = null)
{
parent::__construct($message, 500, $previous);
}
}