Files
deck/lib/ArchivedItemException.php
Julius Knorr 86cb011a5c style: Fix php-cs issues
Signed-off-by: Julius Knorr <jus@bitgrid.net>
2024-12-17 09:22:00 +01:00

19 lines
389 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Deck;
class ArchivedItemException extends \Exception {
/**
* Constructor
* @param string $msg the error message
*/
public function __construct($msg = 'Operation not allowed. Item is archived.') {
parent::__construct($msg);
}
}