P4BGroup/ldap-jwt-authentication

View on GitHub
src/AuthenticationException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace P4BGroup\Authentication;

use RuntimeException;

class AuthenticationException extends RuntimeException
{
    protected $message = 'AUTHENTICATION_FAILED';
    protected $code = 400;
}