mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-19 18:28:38 +01:00
Summary: Ref T13395. Moves all remaining code in "libphutil/" into "arcanist/". Test Plan: Ran various arc workflows, although this probably has some remaining rough edges. Maniphest Tasks: T13395 Differential Revision: https://secure.phabricator.com/D20980
16 lines
222 B
PHP
16 lines
222 B
PHP
<?php
|
|
|
|
final class PhutilLockException extends Exception {
|
|
|
|
private $hint;
|
|
|
|
public function setHint($hint) {
|
|
$this->hint = $hint;
|
|
return $this;
|
|
}
|
|
|
|
public function getHint() {
|
|
return $this->hint;
|
|
}
|
|
|
|
}
|