2014-06-30 17:46:37 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
* @author Robin Appelman <icewind@owncloud.com>
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2015, ownCloud, Inc.
|
|
|
|
* @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/>
|
|
|
|
*
|
2014-06-30 17:46:37 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Public interface of ownCloud for apps to use.
|
|
|
|
* Files/AlreadyExistsException class
|
|
|
|
*/
|
|
|
|
|
2014-06-30 17:46:37 +04:00
|
|
|
// 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;
|
2015-11-09 12:38:39 +03:00
|
|
|
use OC\HintException;
|
2014-06-30 17:46:37 +04:00
|
|
|
|
2014-07-01 16:35:44 +04:00
|
|
|
/**
|
|
|
|
* Storage is temporarily not available
|
2015-04-16 18:00:08 +03:00
|
|
|
* @since 6.0.0
|
2015-11-09 12:38:39 +03:00
|
|
|
* @changed 8.2.1 based on HintException
|
2014-07-01 16:35:44 +04:00
|
|
|
*/
|
2015-11-09 12:38:39 +03:00
|
|
|
class StorageNotAvailableException extends HintException {
|
|
|
|
|
2015-11-26 19:51:47 +03:00
|
|
|
const STATUS_SUCCESS = 0;
|
|
|
|
const STATUS_ERROR = 1;
|
|
|
|
const STATUS_INDETERMINATE = 2;
|
2015-11-26 10:26:07 +03:00
|
|
|
const STATUS_INCOMPLETE_CONF = 3;
|
|
|
|
const STATUS_UNAUTHORIZED = 4;
|
|
|
|
const STATUS_TIMEOUT = 5;
|
|
|
|
const STATUS_NETWORK_ERROR = 6;
|
|
|
|
|
2015-11-09 12:38:39 +03:00
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
}
|
2014-06-30 17:46:37 +04:00
|
|
|
}
|