PEAR2_Cache_Lite › PEAR2_Cache_Lite-0.1.0/php/PEAR2/Cache/Lite/InvalidHashTypeException.php
- PEAR2_Cache_Lite-0.1.0/
- php/
- package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
namespace PEAR2\Cache\Lite;
class InvalidHashTypeException
extends \InvalidArgumentException
implements Exception
{
protected $hashType;
public function __construct($message, $code = 0, $hashType = '')
{
parent::__construct($message, $code);
$this->hashType = $hashType;
}
public function getHashType()
{
return $this->hashType;
}
}
EOF
