# woocommerce-pos/1.10.2/vendor_prefixed/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php

WCPOS – Point of Sale (POS) plugin for WooCommerce, version 1.10.2. 21 lines.

- Page: https://pluginprobe.com/plugins/woocommerce-pos/1.10.2/code/vendor_prefixed/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php
- Raw: https://pluginprobe.com/plugins/woocommerce-pos/1.10.2/raw/vendor_prefixed/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.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.2/code/vendor_prefixed/firebase/php-jwt/src/JWTExceptionWithPayloadInterface.php#L10-L20`.

```php
<?php

namespace WCPOS\Vendor\Firebase\JWT;

interface JWTExceptionWithPayloadInterface
{
    /**
     * Get the payload that caused this exception.
     *
     * @return object
     */
    public function getPayload() : object;
    /**
     * Get the payload that caused this exception.
     *
     * @param object $payload
     * @return void
     */
    public function setPayload(object $payload) : void;
}

```
