nextcloud/lib/private/DB/MigrationException.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
463 B
PHP
Raw Normal View History

<?php
/**
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OC\DB;
class MigrationException extends \Exception {
private $table;
public function __construct($table, $message) {
2014-06-03 06:00:39 -04:00
$this->table = $table;
parent::__construct($message);
}
2014-05-07 06:53:42 -04:00
/**
* @return string
*/
public function getTable() {
return $this->table;
}
}