Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96329442
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
Wed, Dec 25, 09:23
Size
519 B
Mime Type
text/x-php
Expires
Fri, Dec 27, 09:23 (1 d, 11 h)
Engine
blob
Format
Raw Data
Handle
23163630
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