getViewer(); $handlers = AphrontRequestExceptionHandler::getAllHandlers(); $rows = array(); foreach ($handlers as $key => $handler) { $rows[] = array( $handler->getRequestExceptionHandlerPriority(), $key, $handler->getRequestExceptionHandlerDescription(), ); } return id(new AphrontTableView($rows)) ->setHeaders( array( pht('Priority'), pht('Class'), pht('Description'), )) ->setColumnClasses( array( null, 'pri', 'wide', )); } }