{ "translations": { "Wrong password" : "密碼錯誤", "Saved" : "已儲存", "Email sent" : "郵件已傳", "Delete" : "刪除", "Groups" : "群組", "Enable" : "啟用", "Email" : "電郵", "Language" : "語言", "Unlimited" : "無限", "Everyone" : "所有人", "Forum" : "討論區", "None" : "空", "Login" : "登入", "Encryption" : "加密", "Server address" : "伺服器地址", "Port" : "連接埠", "SMTP Username" : "SMTP 使用者名稱", "SMTP Password" : "SMTP 密碼", "Version" : "版本", "Sharing" : "分享", "days" : "天", "Remove image" : "刪除圖片", "Cancel" : "取消", "Your email address" : "你的電郵地址", "Help translate" : "幫忙翻譯", "Password" : "密碼", "New password" : "新密碼", "Change password" : "更改密碼", "Username" : "用戶名稱", "All" : "所有", "Disable" : "停用", "Updated" : "已更新", "undo" : "復原", "Create" : "新增", "Other" : "其他", "Default" : "預設" },"pluralForm" :"nplurals=1; plural=0;" }broker'>3rdparty/stable29/sabre-dav-itip-broker Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/lib/private/RepairException.php
blob: 002ec36fb942a8a935dea6f3fb99a393a89c9b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
 * @copyright Copyright (c) 2016, ownCloud, Inc.
 *
 * @author Morris Jobke <hey@morrisjobke.de>
 * @author Vincent Petry <pvince81@owncloud.com>
 *
 * @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 OC;

/**
 * Exception thrown whenever a database/migration repair
 * could not be done.
 */
class RepairException extends \Exception {
}