Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/files/exception/PhabricatorFileStorageConfigurationException.php
12242 views
1
<?php
2
3
/**
4
* Thrown by storage engines to indicate an configuration error which should
5
* abort the storage attempt, as opposed to a transient storage error which
6
* should be retried on other engines.
7
*/
8
final class PhabricatorFileStorageConfigurationException extends Exception {}
9
10