Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96115144
FilesystemException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Dec 22, 18:42
Size
823 B
Mime Type
text/x-php
Expires
Tue, Dec 24, 18:42 (2 d)
Engine
blob
Format
Raw Data
Handle
23113248
Attached To
rPHU libphutil
FilesystemException.php
View Options
<?php
/**
* Exception thrown by Filesystem to indicate an error accessing the file
* system.
*
* @group filesystem
*/
final
class
FilesystemException
extends
Exception
{
protected
$path
;
/**
* Create a new FilesystemException, providing a path and a message.
*
* @param string Path that caused the failure.
* @param string Description of the failure.
*/
public
function
__construct
(
$path
,
$message
)
{
$this
->
path
=
$path
;
parent
::
__construct
(
$message
);
}
/**
* Retrieve the path associated with the exception. Generally, this is
* something like a path that couldn't be read or written, or a path that
* was expected to exist but didn't.
*
* @return string Path associated with the exception.
*/
public
function
getPath
()
{
return
$this
->
path
;
}
}
Event Timeline
Log In to Comment