summaryrefslogtreecommitdiff
path: root/inc/remote.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/remote.php')
-rw-r--r--inc/remote.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/remote.php b/inc/remote.php
index 71ceb97b5..8c505911c 100644
--- a/inc/remote.php
+++ b/inc/remote.php
@@ -4,7 +4,7 @@ if (!defined('DOKU_INC')) die();
require_once(DOKU_INC.'inc/RemoteAPICore.php');
class RemoteException extends Exception {}
-class RemoteAccessDenied extends RemoteException {}
+class RemoteAccessDeniedException extends RemoteException {}
abstract class RemoteDataType {
private $value;
@@ -161,7 +161,7 @@ class RemoteAPI {
*/
public function forceAccess() {
if (!$this->hasAccess()) {
- throw new RemoteAccessDenied();
+ throw new RemoteAccessDeniedException();
}
}