Merge pull request #15838 from demeritcowboy/getcasereport-split
[civicrm-core.git] / CRM / Utils / Cache / InvalidArgumentException.php
CommitLineData
b7d40861
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
bc77d7c0 4 | Copyright CiviCRM LLC. All rights reserved. |
b7d40861 5 | |
bc77d7c0
TO
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 |
b7d40861
TO
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 */
19class CRM_Utils_Cache_InvalidArgumentException extends \CRM_Core_Exception implements \Psr\SimpleCache\InvalidArgumentException {
20}