36 lines
818 B
PHP
36 lines
818 B
PHP
<?php
|
|
|
|
/**
|
|
* ~~summary~~
|
|
*
|
|
* ~~description~~
|
|
*
|
|
* PHP version 5
|
|
*
|
|
* @category Caching
|
|
* @package PEAR2_Cache_SHM
|
|
* @author Vasil Rangelov <boen.robot@gmail.com>
|
|
* @copyright 2011 Vasil Rangelov
|
|
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
|
|
* @version 0.1.3
|
|
* @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 <boen.robot@gmail.com>
|
|
* @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
|
|
{
|
|
}
|