nextcloudpi/ncp-app/lib/Exceptions/SaveSettingsException.php
Tobias K 3958883e62
Add ncp-community.sh and admin section to ncp-app
Signed-off-by: Tobias K <6317548+theCalcaholic@users.noreply.github.com>
2023-10-19 20:17:37 +02:00

12 lines
141 B
PHP

<?php
declare(strict_types=1);
namespace OCA\NextcloudPi\Exceptions;
use Exception;
class SaveSettingsException extends Exception {
}
?>