Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99933811
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, Jan 27, 08:38
Size
519 B
Mime Type
text/x-php
Expires
Wed, Jan 29, 08:38 (2 d)
Engine
blob
Format
Raw Data
Handle
23852417
Attached To
rPH Phabricator
HarbormasterThrowExceptionBuildStep.php
View Options
<?php
final
class
HarbormasterThrowExceptionBuildStep
extends
HarbormasterBuildStepImplementation
{
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