1234567891011121314151617181920212223242526 |
- <?php
- namespace OCP\Files;
- class StorageAuthException extends StorageNotAvailableException {
-
- public function __construct($message = '', ?\Exception $previous = null) {
- $l = \OCP\Util::getL10N('core');
- parent::__construct($l->t('Storage unauthorized. %s', [$message]), self::STATUS_UNAUTHORIZED, $previous);
- }
- }
|