1234567891011121314151617181920 |
- <?php
- namespace OC\Encryption\Exceptions;
- use OCP\Encryption\Exceptions\GenericEncryptionException;
- class ModuleAlreadyExistsException extends GenericEncryptionException {
-
- public function __construct($id, $name) {
- parent::__construct('Id "' . $id . '" already used by encryption module "' . $name . '"');
- }
- }
|