mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
12 lines
144 B
PHP
12 lines
144 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\NextcloudPi\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class InvalidSettingsException extends Exception {
|
|
}
|
|
|
|
?>
|