summaryrefslogtreecommitdiffstats
path: root/lib/public/encryption/exceptions/genericencryptionexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/encryption/exceptions/genericencryptionexception.php')
-rw-r--r--lib/public/encryption/exceptions/genericencryptionexception.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/public/encryption/exceptions/genericencryptionexception.php b/lib/public/encryption/exceptions/genericencryptionexception.php
index 59ab25fd61d..c488d4df162 100644
--- a/lib/public/encryption/exceptions/genericencryptionexception.php
+++ b/lib/public/encryption/exceptions/genericencryptionexception.php
@@ -25,7 +25,12 @@ namespace OCP\Encryption\Exceptions;
class GenericEncryptionException extends \Exception {
- public function __construct($message = "", $code = 0, \Exception $previous = null) {
+ /**
+ * @param string $message
+ * @param int $code
+ * @param \Exception $previous
+ */
+ public function __construct($message = '', $code = 0, \Exception $previous = null) {
if (empty($message)) {
$message = 'Unspecified encryption exception';
}