diff options
author | Björn Schießle <bjoern@schiessle.org> | 2015-11-09 10:38:39 +0100 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2015-11-10 10:54:17 +0100 |
commit | 2960a208cd1810890f647ba4993fa9b1192adf38 (patch) | |
tree | 3ce7f503aa3e554878d633b029c6a26b722c757e /lib | |
parent | 113f9f80f3f5a96afdcb71f4f76e3cee22e8dc58 (diff) | |
download | nextcloud-server-2960a208cd1810890f647ba4993fa9b1192adf38.tar.gz nextcloud-server-2960a208cd1810890f647ba4993fa9b1192adf38.zip |
use a HintException to have some useful user output in case of an error
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/files/storagenotavailableexception.php | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/public/files/storagenotavailableexception.php b/lib/public/files/storagenotavailableexception.php index 842867ba567..a6665b38ce1 100644 --- a/lib/public/files/storagenotavailableexception.php +++ b/lib/public/files/storagenotavailableexception.php @@ -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); + } } |