Merge pull request #18056 from pradpnayak/invopdf
[civicrm-core.git] / CRM / Utils / Cache / InvalidArgumentException.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 * Class CRM_Utils_Cache_InvalidArgumentException
14 *
15 * NOTE: PSR-16 specifies its exceptions using interfaces. For cache-consumers,
16 * it's better to catch based on the interface. For cache-drivers, we need
17 * a concrete class.
18 */
19 class CRM_Utils_Cache_InvalidArgumentException extends \CRM_Core_Exception implements \Psr\SimpleCache\InvalidArgumentException {
20 }