Files
deck/lib/NotFoundException.php
Andy Scherzinger be11113d32 chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-07 15:51:49 +02:00

18 lines
339 B
PHP

<?php
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Deck;
class NotFoundException extends StatusException {
public function __construct($message = '') {
parent::__construct($message);
}
public function getStatus() {
return 404;
}
}