Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F8888146
PhutilMethodNotImplementedException.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
932 B
Subscribers
None
PhutilMethodNotImplementedException.php
View Options
<?php
/**
* An exception thrown when a method is called on a class which does not
* provide an implementation for the called method. This is sometimes the case
* when a base class expects subclasses to provide their own implementations,
* for example.
*/
final
class
PhutilMethodNotImplementedException
extends
Exception
{
public
function
__construct
(
$message
=
null
)
{
if
(
$message
)
{
parent
::
__construct
(
$message
);
}
else
{
$caller
=
idx
(
debug_backtrace
(),
1
);
if
(
isset
(
$caller
[
'object'
]))
{
$class
=
get_class
(
$caller
[
'object'
]);
}
else
{
$class
=
idx
(
$caller
,
'class'
);
}
$function
=
idx
(
$caller
,
'function'
);
if
(
$class
)
{
parent
::
__construct
(
pht
(
'Method %s in class %s is not implemented!'
,
$function
,
$class
));
}
else
{
parent
::
__construct
(
pht
(
'Function %s is not implemented!'
,
$function
));
}
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jun 10, 5:02 AM (1 d, 23 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
3385884
Default Alt Text
PhutilMethodNotImplementedException.php (932 B)
Attached To
rARC Arcanist
Event Timeline
Log In to Comment