for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\NetGsm\Exceptions;
use Exception;
class InvalidConfiguration extends Exception
{
/**
* @return static
*/
public static function configurationNotSet()
return new static('In order to send notification via NetGsm you need to add credentials in the `netgsm` key of `config.services`.');
}
public static function invalidCredentials()
return new static('Invalid API credentials');