File "CacheException.php"

Full Path: /home/warrior1/public_html/plugins/mailpoet/vendor-prefixed/doctrine/dbal/lib/Doctrine/DBAL/Cache/CacheException.php
File size: 394 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
namespace MailPoetVendor\Doctrine\DBAL\Cache;
if (!defined('ABSPATH')) exit;
use MailPoetVendor\Doctrine\DBAL\Exception;
class CacheException extends Exception
{
 public static function noCacheKey()
 {
 return new self('No cache key was set.');
 }
 public static function noResultDriverConfigured()
 {
 return new self('Trying to cache a query but no result driver is configured.');
 }
}