2015-11-25 19:52:58 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Jesús Macias <jmacias@solidgear.es>
|
2015-11-25 19:52:58 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
namespace OCP\Files;
|
|
|
|
|
|
|
|
/**
|
2015-12-01 19:27:06 +03:00
|
|
|
* Storage authentication exception
|
2015-11-25 19:52:58 +03:00
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2015-12-01 19:27:06 +03:00
|
|
|
class StorageTimeoutException extends StorageNotAvailableException {
|
2015-11-25 19:52:58 +03:00
|
|
|
|
|
|
|
/**
|
2015-12-01 19:27:06 +03:00
|
|
|
* StorageTimeoutException constructor.
|
2015-11-25 19:52:58 +03:00
|
|
|
*
|
|
|
|
* @param string $message
|
|
|
|
* @param int $code
|
|
|
|
* @param \Exception $previous
|
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2015-11-26 10:26:07 +03:00
|
|
|
public function __construct($message = '', \Exception $previous = null) {
|
2015-11-25 19:52:58 +03:00
|
|
|
$l = \OC::$server->getL10N('core');
|
2015-12-01 19:27:06 +03:00
|
|
|
parent::__construct($l->t('Storage connection timeout. %s', $message), self::STATUS_TIMEOUT, $previous);
|
2015-11-25 19:52:58 +03:00
|
|
|
}
|
|
|
|
}
|