# woocommerce-pos/1.10.17/vendor_prefixed/firebase/php-jwt/src/ExpiredException.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.17. 17 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.17/code/vendor_prefixed/firebase/php-jwt/src/ExpiredException.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.17/raw/vendor_prefixed/firebase/php-jwt/src/ExpiredException.php
- Modified: 2024-06-12T19:48:00+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/woocommerce-pos/1.10.17/code/vendor_prefixed/firebase/php-jwt/src/ExpiredException.php#L10-L20`.

```php
<?php

namespace WCPOS\Vendor\Firebase\JWT;

class ExpiredException extends \UnexpectedValueException implements JWTExceptionWithPayloadInterface
{
    private object $payload;
    public function setPayload(object $payload) : void
    {
        $this->payload = $payload;
    }
    public function getPayload() : object
    {
        return $this->payload;
    }
}

```
