[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/aphront/exception/ -> AphrontUsageException.php (source)

   1  <?php
   2  
   3  /**
   4   * These exceptions represent user error, and are not logged.
   5   *
   6   * @concrete-extensible
   7   */
   8  class AphrontUsageException extends AphrontException {
   9  
  10    private $title;
  11  
  12    public function __construct($title, $message) {
  13      $this->title = $title;
  14      parent::__construct($message);
  15    }
  16  
  17    public function getTitle() {
  18      return $this->title;
  19    }
  20  
  21  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1