| 1 | <?php |
| 2 | declare (strict_types=1); |
| 3 | namespace MailPoetVendor\Doctrine\ORM\Cache\Exception; |
| 4 | if (!defined('ABSPATH')) exit; |
| 5 | final class QueryCacheNotConfigured extends CacheException |
| 6 | { |
| 7 | public static function create() : self |
| 8 | { |
| 9 | return new self('Query Cache is not configured.'); |
| 10 | } |
| 11 | } |
| 12 |