Page MenuHomestyx hydra

AphrontUsageException.php
No OneTemporary

AphrontUsageException.php

<?php
/**
* These exceptions represent user error, and are not logged.
*
* @concrete-extensible
*/
class AphrontUsageException extends AphrontException {
private $title;
public function __construct($title, $message) {
$this->title = $title;
parent::__construct($message);
}
public function getTitle() {
return $this->title;
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Feb 4, 12:29 PM (1 h, 7 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
614214
Default Alt Text
AphrontUsageException.php (359 B)

Event Timeline