@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1<?php
2
3final class PhutilICSParserException extends Exception {
4
5 private $parserFailureCode;
6
7 public function setParserFailureCode($code) {
8 $this->parserFailureCode = $code;
9 return $this;
10 }
11
12 public function getParserFailureCode() {
13 return $this->parserFailureCode;
14 }
15
16}