blob: 83dfa12dbfc5c722a7d80d7a896cb3900bb89672 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
namespace OCP\Share\Exceptions;
use OC\HintException;
/**
* Class GenericEncryptionException
*
* @package OCP\Share\Exceptions
* @since 9.0.0
*/
class GenericShareException extends HintException {
/**
* @param string $message
* @param string $hint
* @param int $code
* @param \Exception $previous
* @since 9.0.0
*/
public function __construct($message = '', $hint = '', $code = 0, \Exception $previous = null) {
if (empty($message)) {
$message = 'Unspecified share exception';
}
parent::__construct($message, $hint, $code, $previous);
}
}
|