Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / diffusion / exception / DiffusionRefNotFoundException.php
blob8dda27d0723ad7184d4d677281cca88f0509de5f
1 <?php
3 final class DiffusionRefNotFoundException extends Exception {
5 private $ref;
7 public function setRef($ref) {
8 $this->ref = $ref;
9 return $this;
12 public function getRef() {
13 return $this->ref;