Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122637034
HarbormasterThrowExceptionBuildStep.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
Mon, Jul 21, 06:37
Size
507 B
Mime Type
text/x-php
Expires
Wed, Jul 23, 06:37 (2 d)
Engine
blob
Format
Raw Data
Handle
27504179
Attached To
rPH Phabricator
HarbormasterThrowExceptionBuildStep.php
View Options
<?php
final
class
HarbormasterThrowExceptionBuildStep
extends
BuildStepImplementation
{
public
function
getName
()
{
return
pht
(
'Throw Exception'
);
}
public
function
getGenericDescription
()
{
return
pht
(
'Throw an exception.'
);
}
public
function
getDescription
()
{
return
pht
(
'Throw an exception.'
);
}
public
function
execute
(
HarbormasterBuild
$build
,
HarbormasterBuildTarget
$build_target
)
{
throw
new
Exception
(
pht
(
'(This is an explicit exception.)'
));
}
}
Event Timeline
Log In to Comment