Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282289
FilesystemException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
799 B
Referenced Files
None
Subscribers
None
FilesystemException.php
View Options
<?php
/**
* Exception thrown by Filesystem to indicate an error accessing the file
* system.
*/
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
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 06:52 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1113980
Default Alt Text
FilesystemException.php (799 B)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment