P4BGroup/ldap-jwt-authentication

View on GitHub
src/DecodeException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace P4BGroup\Authentication;

use Exception;

class DecodeException extends Exception
{
    /**
     * @var string
     */
    protected $message = 'JWT_DECODE_FAILED';

    /**
     * @var int
     */
    protected $code = 400;
}