Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / releeph / field / exception / ReleephFieldParseException.php
blobfcb513df139a0dbe40775971708c5d9b068f84bc
1 <?php
3 final class ReleephFieldParseException extends Exception {
5 public function __construct(ReleephFieldSpecification $field,
6 $message) {
8 $name = $field->getName();
9 parent::__construct("{$name}: {$message}");