Add specific exception in case of GPG encryption failing
This commit is contained in:
@@ -43,11 +43,16 @@ final class MDMailerHelper {
|
||||
}
|
||||
|
||||
if ($gpg->addsignkey(MD_CONF_EMAIL::PGP_ENC_KEY) === false) {
|
||||
throw new \Exception("Cannot set private key for GPG encryption");
|
||||
throw new \MDMailerEncryptionFailedException("Cannot set private key for GPG encryption");
|
||||
}
|
||||
|
||||
if (empty($msg = $gpg->encrypt($msg))) {
|
||||
throw new \Exception("Failed to sign and encrypt the message");
|
||||
try {
|
||||
if (empty($msg = $gpg->encrypt($msg))) {
|
||||
throw new \MDMailerEncryptionFailedException("Failed to sign and encrypt the message");
|
||||
}
|
||||
}
|
||||
catch (Exception $e) {
|
||||
throw new MDMailerEncryptionFailedException("Failed to sign and encrypt the message to " . $to);
|
||||
}
|
||||
|
||||
return $msg;
|
||||
|
Reference in New Issue
Block a user