# wpide/3.5.9/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php

WPIDE – File Manager &amp; Code Editor, version 3.5.9. 20 lines.

- Page: https://pluginprobe.com/plugins/wpide/3.5.9/code/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php
- Raw: https://pluginprobe.com/plugins/wpide/3.5.9/raw/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php
- Modified: 2022-08-02T19:28:08+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wpide/3.5.9/code/vendor/laravel/serializable-closure/src/Exceptions/MissingSecretKeyException.php#L10-L20`.

```php
<?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);
    }
}

```
