Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101826001
HarbormasterRestartException.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
Fri, Feb 14, 02:59
Size
588 B
Mime Type
text/x-php
Expires
Sun, Feb 16, 02:59 (2 d)
Engine
blob
Format
Raw Data
Handle
24238486
Attached To
rPH Phabricator
HarbormasterRestartException.php
View Options
<?php
final
class
HarbormasterRestartException
extends
Exception
{
private
$title
;
private
$body
=
array
();
public
function
__construct
(
$title
,
$body
=
null
)
{
$this
->
setTitle
(
$title
);
$this
->
appendParagraph
(
$body
);
parent
::
__construct
(
$title
);
}
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
getTitle
()
{
return
$this
->
title
;
}
public
function
appendParagraph
(
$description
)
{
$this
->
body
[]
=
$description
;
return
$this
;
}
public
function
getBody
()
{
return
$this
->
body
;
}
}
Event Timeline
Log In to Comment