Path: blob/master/src/applications/config/view/PhabricatorInFlightErrorView.php
12256 views
<?php12final class PhabricatorInFlightErrorView extends AphrontView {34private $message;56public function setMessage($message) {7$this->message = $message;8return $this;9}1011public function getMessage() {12return $this->message;13}1415public function render() {16return phutil_tag(17'div',18array(19'class' => 'in-flight-error-detail',20),21array(22phutil_tag(23'h1',24array(25'class' => 'in-flight-error-title',26),27pht('A Troublesome Encounter!')),28phutil_tag(29'div',30array(31'class' => 'in-flight-error-body',32),33pht(34'Woe! This request had its journey cut short by unexpected '.35'circumstances (%s).',36$this->getMessage())),37));38}3940}414243