Page MenuHomec4science

PhutilLockException.php
No OneTemporary

File Metadata

Created
Wed, Feb 5, 15:37

PhutilLockException.php

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

Event Timeline