mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
13 lines
306 B
PHP
13 lines
306 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Thrown by storage engines to indicate an configuration error which should
|
||
|
* abort the storage attempt, as opposed to a transient storage error which
|
||
|
* should be retried on other engines.
|
||
|
*
|
||
|
* @group files
|
||
|
*/
|
||
|
final class PhabricatorFileStorageConfigurationException extends Exception {
|
||
|
|
||
|
}
|