public function __construct()

in src/ExitException.hack [33:39]


  public function __construct(
    int $code,
    private ?string $userMessage = null,
  ) {
    $this->code = $code;
    parent::__construct('exit(%d)', $code);
  }