Page MenuHomec4science

PhutilMissingSymbolException.php
No OneTemporary

File Metadata

Created
Fri, Sep 27, 23:00

PhutilMissingSymbolException.php

<?php
/**
* @group library
*/
final class PhutilMissingSymbolException extends Exception {
public function __construct($symbol, $type, $reason) {
parent::__construct(
"Failed to load {$type} '{$symbol}': $reason ".
"If this symbol was recently added or moved, your library map may ".
"be out of date. You can rebuild the map by running 'arc liberate'. ".
"For more information, see: ".
"http://www.phabricator.com/docs/phabricator/article/".
"libphutil_Libraries_User_Guide.html");
}
}

Event Timeline