nginxsonarrradarrplexorganizrdashboardapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmark
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
375 B
19 lines
375 B
<?php
|
|
|
|
namespace Illuminate\Queue;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
class InvalidPayloadException extends InvalidArgumentException
|
|
{
|
|
/**
|
|
* Create a new exception instance.
|
|
*
|
|
* @param string|null $message
|
|
* @return void
|
|
*/
|
|
public function __construct($message = null)
|
|
{
|
|
parent::__construct($message ?: json_last_error());
|
|
}
|
|
}
|
|
|