1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-19 16:38:51 +02:00

(Arcanist wilds) Add setHint/getHint to PhutilLockException for recent lock changes

Summary: Ref T13202. See PHI889. See D19702. A small part of that change affected libphutil, but got lost in the shuffle with all the Arcanist/wilds stuff in my local workspace.

Test Plan: See D19702.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13202

Differential Revision: https://secure.phabricator.com/D19720
This commit is contained in:
epriestley 2018-10-01 10:29:09 -07:00
parent 12722b9ea9
commit 9d66610027

View file

@ -1,3 +1,16 @@
<?php
final class PhutilLockException extends Exception {}
final class PhutilLockException extends Exception {
private $hint;
public function setHint($hint) {
$this->hint = $hint;
return $this;
}
public function getHint() {
return $this->hint;
}
}