mirror of
https://we.phorge.it/source/arcanist.git
synced 2025-02-21 11:09:02 +01:00
17 lines
222 B
PHP
17 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;
|
||
|
}
|
||
|
|
||
|
}
|