mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #20389 from owncloud/storage_not_available
use a HintException to have some useful user output in case of an error
This commit is contained in:
commit
480bf14698
1 changed files with 16 additions and 1 deletions
|
|
@ -28,10 +28,25 @@
|
|||
// use OCP namespace for all classes that are considered public.
|
||||
// This means that they should be used by apps instead of the internal ownCloud classes
|
||||
namespace OCP\Files;
|
||||
use OC\HintException;
|
||||
|
||||
/**
|
||||
* Storage is temporarily not available
|
||||
* @since 6.0.0
|
||||
* @changed 8.2.1 based on HintException
|
||||
*/
|
||||
class StorageNotAvailableException extends \Exception {
|
||||
class StorageNotAvailableException extends HintException {
|
||||
|
||||
/**
|
||||
* StorageNotAvailableException constructor.
|
||||
*
|
||||
* @param string $message
|
||||
* @param int $code
|
||||
* @param \Exception $previous
|
||||
* @since 6.0.0
|
||||
*/
|
||||
public function __construct($message = '', $code = 0, \Exception $previous = null) {
|
||||
$l = \OC::$server->getL10N('core');
|
||||
parent::__construct($message, $l->t('Storage not available'), $code, $previous);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue