for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\JetSms\Exceptions;
/**
* Class CouldNotSendNotification.
*/
class CouldNotSendNotification extends \Exception
{
* Get a new could not send notification exception with
* missing recipient message.
*
* @return static
public static function missingRecipient()
$message = 'The recipient of the sms message is missing.';
return new static($message);
}