Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92593009
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
Thu, Nov 21, 19:32
Size
823 B
Mime Type
text/x-php
Expires
Sat, Nov 23, 19:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22466065
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