MDMailer/exceptions/MDMailerEncryptionFailedException.php

19 lines
311 B
PHP
Raw Normal View History

<?PHP
declare(strict_types = 1);
/**
* Exception to be thrown
*/
2023-11-21 19:31:28 +01:00
final class MDMailerEncryptionFailedException extends Exception {
/**
* Error message.
*
* @return string
*/
public function errorMessage() {
//error message
return 'GPG encryption failed';
}
}