From 2bbfa8c1add38eb4d42b94b7f743e5675d1e2b62 Mon Sep 17 00:00:00 2001 From: nestict Date: Sat, 24 May 2025 11:12:33 +0200 Subject: [PATCH] Upload files to "system/autoload/PEAR2/Cache/SHM" Signed-off-by: nestict --- system/autoload/PEAR2/Cache/SHM/Exception.php | 35 ++++++++++++++++++ .../Cache/SHM/InvalidArgumentException.php | 36 +++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 system/autoload/PEAR2/Cache/SHM/Exception.php create mode 100644 system/autoload/PEAR2/Cache/SHM/InvalidArgumentException.php diff --git a/system/autoload/PEAR2/Cache/SHM/Exception.php b/system/autoload/PEAR2/Cache/SHM/Exception.php new file mode 100644 index 0000000..cfcac1e --- /dev/null +++ b/system/autoload/PEAR2/Cache/SHM/Exception.php @@ -0,0 +1,35 @@ + + * @copyright 2011 Vasil Rangelov + * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 + * @version 0.2.0 + * @link http://pear2.php.net/PEAR2_Cache_SHM + */ +/** + * The namespace declaration. + */ +namespace PEAR2\Cache\SHM; + +/** + * Generic exception class of this package. + * + * @category Caching + * @package PEAR2_Cache_SHM + * @author Vasil Rangelov + * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 + * @link http://pear2.php.net/PEAR2_Cache_SHM + */ +interface Exception +{ +} diff --git a/system/autoload/PEAR2/Cache/SHM/InvalidArgumentException.php b/system/autoload/PEAR2/Cache/SHM/InvalidArgumentException.php new file mode 100644 index 0000000..556eddd --- /dev/null +++ b/system/autoload/PEAR2/Cache/SHM/InvalidArgumentException.php @@ -0,0 +1,36 @@ + + * @copyright 2011 Vasil Rangelov + * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 + * @version 0.2.0 + * @link http://pear2.php.net/PEAR2_Cache_SHM + */ +/** + * The namespace declaration. + */ +namespace PEAR2\Cache\SHM; + +/** + * Exception thrown when there's something wrong with an argument. + * + * @category Caching + * @package PEAR2_Cache_SHM + * @author Vasil Rangelov + * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 + * @link http://pear2.php.net/PEAR2_Cache_SHM + */ +class InvalidArgumentException extends \InvalidArgumentException + implements Exception +{ +}