File "MissingSecretKeyException.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php
File size: 395 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\SerializableClosure\Exceptions;
use Exception;
class MissingSecretKeyException extends Exception
{
/**
* Create a new exception instance.
*
* @param string $message
* @return void
*/
public function __construct($message = 'No serializable closure secret key has been specified.')
{
parent::__construct($message);
}
}