# wpdatatables/6.5.1.7/lib/firebase/php-jwt/src/BeforeValidException.php

wpDataTables – WordPress Data Table, Dynamic Tables &amp; Table Charts Plugin, version 6.5.1.7. 19 lines.

- Page: https://pluginprobe.com/plugins/wpdatatables/6.5.1.7/code/lib/firebase/php-jwt/src/BeforeValidException.php
- Raw: https://pluginprobe.com/plugins/wpdatatables/6.5.1.7/raw/lib/firebase/php-jwt/src/BeforeValidException.php
- Modified: 2024-02-20T08:53:02+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/wpdatatables/6.5.1.7/code/lib/firebase/php-jwt/src/BeforeValidException.php#L10-L20`.

```php
<?php

namespace Firebase\JWT;

class BeforeValidException extends \UnexpectedValueException implements JWTExceptionWithPayloadInterface
{
    private object $payload;

    public function setPayload(object $payload): void
    {
        $this->payload = $payload;
    }

    public function getPayload(): object
    {
        return $this->payload;
    }
}

```
