PEAR2_Cache_Lite › PEAR2_Cache_Lite-0.1.0/php/PEAR2/Cache/Lite/FileException.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
<?php
namespace PEAR2\Cache\Lite;
class FileException extends \Exception implements Exception
{
protected $filePath;
public function __construct($message, $code = 0, $filePath = '')
{
parent::__construct($message, $code);
$this->filePath = $filePath;
}
public function getFilePath()
{
return $this->filePath;
}
}
EOF
