1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
-
-
- namespace Doctrine\DBAL\Cache;
-
-
- class CacheException extends \Doctrine\DBAL\DBALException
- {
- static public function noCacheKey()
- {
- return new self("No cache key was set.");
- }
-
- static public function noResultDriverConfigured()
- {
- return new self("Trying to cache a query but no result driver is configured.");
- }
- }
|