blob: 45a8b6ea0b545215a8185b9456e67c71b33e16da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace Infrastructure\Auth\Exceptions;
use Symfony\Component\HttpKernel\Exception\UnauthorizedHttpException;
class InvalidCredentialsException extends UnauthorizedHttpException
{
public function __construct($message = null, \Exception $previous = null, $code = 0)
{
parent::__construct('', $message, $previous, $code);
}
}
|