repo.or.cz
/
phabricator.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git]
/
src
/
applications
/
releeph
/
field
/
exception
/
ReleephFieldParseException.php
blob
fcb513df139a0dbe40775971708c5d9b068f84bc
1
<
?php
2
3
final class
ReleephFieldParseException
extends
Exception
{
4
5
public function
__construct
(
ReleephFieldSpecification
$field
,
6
$message
) {
7
8
$name
=
$field
->
getName
();
9
parent
::
__construct
(
"{
$name
}: {
$message
}"
);
10
}
11
12
}