src/Exceptions/InvalidNotificationTypeException.php
<?php
namespace Xqddd\Notifications\Exceptions;
use Xqddd\Exceptions\InvalidArgumentException;
/**
* Exception for invalid notification type
*
* @author Andrei Pirjoleanu <andreipirjoleanu@gmail.com>
* @package Xqddd\Notifications\Exceptions
*/
class InvalidNotificationTypeException extends InvalidArgumentException
{
/**
* The exception message
*
* @var string
*/
protected $message = 'Invalid [%s] notification type: [%s] expected - [%s] given.';
/**
* The exception code
*
* @var int
*/
protected $code = Codes::INVALID_NOTIFICATION_TYPE;
/**
* The exception string code
*
* @var string
*/
protected $stringCode = 'INVALID_NOTIFICATION_TYPE';
}