Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92592520
CommandException.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:24
Size
702 B
Mime Type
text/x-php
Expires
Sat, Nov 23, 19:24 (2 d)
Engine
blob
Format
Raw Data
Handle
22466436
Attached To
rPHU libphutil
CommandException.php
View Options
<?php
/**
* Exception thrown when a system command fails.
* @group exec
*/
final
class
CommandException
extends
Exception
{
protected
$command
;
protected
$stdout
;
protected
$stderr
;
protected
$error
;
public
function
__construct
(
$message
,
$command
,
$error
,
$stdout
,
$stderr
)
{
parent
::
__construct
(
$message
);
$this
->
command
=
$command
;
$this
->
error
=
$error
;
$this
->
stdout
=
$stdout
;
$this
->
stderr
=
$stderr
;
}
public
function
getCommand
()
{
return
$this
->
command
;
}
public
function
getError
()
{
return
$this
->
error
;
}
public
function
getStdout
()
{
return
$this
->
stdout
;
}
public
function
getStderr
()
{
return
$this
->
stderr
;
}
}
Event Timeline
Log In to Comment