mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
The latest images incorporate all changes previously added by the dockerfiles. The arm image however is still missing/unreliable from the registry and must be built independently.
22 lines
461 B
PHP
22 lines
461 B
PHP
<?php
|
|
|
|
namespace Doctrine\DBAL\Cache;
|
|
|
|
use Doctrine\DBAL\Exception;
|
|
|
|
/** @psalm-immutable */
|
|
class CacheException extends Exception
|
|
{
|
|
/** @return CacheException */
|
|
public static function noCacheKey()
|
|
{
|
|
return new self('No cache key was set.');
|
|
}
|
|
|
|
/** @return CacheException */
|
|
public static function noResultDriverConfigured()
|
|
{
|
|
return new self('Trying to cache a query but no result driver is configured.');
|
|
}
|
|
}
|