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
451 B
PHP
Raw Permalink 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 {
public function __construct(
private string $table,
$message,
) {
parent::__construct($message);
}
2014-05-07 06:53:42 -04:00
/**
* @return string
*/
public function getTable(): string {
2014-05-07 06:53:42 -04:00
return $this->table;
}
}