diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2024-07-16 08:29:44 +0200 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-07-30 12:12:32 +0200 |
commit | 0e88e066e0bd10c500bab8c8abcd5ab9ce4f1240 (patch) | |
tree | a67ddd3bf21884a1e4a0eef7d88d435b2b133315 /remote.php | |
parent | 68864ab3945f8e1b2e2209105e0189905ab07003 (diff) | |
download | nextcloud-server-0e88e066e0bd10c500bab8c8abcd5ab9ce4f1240.tar.gz nextcloud-server-0e88e066e0bd10c500bab8c8abcd5ab9ce4f1240.zip |
fix(dav): drop unwanted RemoteException class
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'remote.php')
-rw-r--r-- | remote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.php b/remote.php index e5d4c85db20..1cdb74c4139 100644 --- a/remote.php +++ b/remote.php @@ -17,7 +17,7 @@ use Sabre\DAV\Server; * Dummy exception class to be use locally to identify certain conditions * Will not be logged to avoid DoS */ -class RemoteException extends Exception { +class RemoteException extends \Exception { } /** |