aboutsummaryrefslogtreecommitdiffstats
path: root/apps/encryption/lib/Session.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/encryption/lib/Session.php')
-rw-r--r--apps/encryption/lib/Session.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/lib/Session.php b/apps/encryption/lib/Session.php
index e16396e8faf..4b759618eb2 100644
--- a/apps/encryption/lib/Session.php
+++ b/apps/encryption/lib/Session.php
@@ -68,7 +68,7 @@ class Session {
public function getPrivateKey() {
$key = $this->session->get('privateKey');
if (is_null($key)) {
- throw new Exceptions\PrivateKeyMissingException('please try to log-out and log-in again', 0);
+ throw new PrivateKeyMissingException('please try to log-out and log-in again', 0);
}
return $key;
}