19 lines
293 B
PHP
19 lines
293 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
/**
|
||
|
* Exception to be thrown
|
||
|
*/
|
||
|
final class MDMailerEncryptionFailedException {
|
||
|
/**
|
||
|
* Error message.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function errorMessage() {
|
||
|
//error message
|
||
|
return 'GPG encryption failed';
|
||
|
|
||
|
}
|
||
|
}
|