Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/infrastructure/cluster/exception/PhabricatorClusterImpossibleWriteException.php
12241 views
1
<?php
2
3
final class PhabricatorClusterImpossibleWriteException
4
extends PhabricatorClusterException {
5
6
public function getExceptionTitle() {
7
return pht('Impossible Cluster Write');
8
}
9
10
}
11
12