17 lines
335 B
PHP
17 lines
335 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-FileCopyrightText: 2013 Bernhard Posselt <nukeawhale@gmail.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Notes\Service;
|
|
|
|
use Exception;
|
|
|
|
class NoteDoesNotExistException extends Exception {
|
|
}
|