8000 The Security Component's exceptions should implements Security's Exce… · symfony/symfony@0ee4cf1 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0ee4cf1

Browse files
committed
The Security Component's exceptions should implements Security's ExceptionInterface
1 parent 1e90ddd commit 0ee4cf1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Symfony/Component/Security/Core/Exception/AccessDeniedException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @author Fabien Potencier <fabien@symfony.com>
1818
*/
19-
class AccessDeniedException extends \RuntimeException
19+
class AccessDeniedException extends RuntimeException
2020
{
2121
private $attributes = array();
2222
private $subject;

src/Symfony/Component/Security/Core/Exception/AuthenticationException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @author Fabien Potencier <fabien@symfony.com>
2020
* @author Alexander <iam.asm89@gmail.com>
2121
*/
22-
class AuthenticationException extends \RuntimeException implements \Serializable
22+
class AuthenticationException extends RuntimeException implements \Serializable
2323
{
2424
private $token;
2525

src/Symfony/Component/Security/Core/Exception/LogoutException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @author Jeremy Mikola <jmikola@gmail.com>
1818
*/
19-
class LogoutException extends \RuntimeException
19+
class LogoutException extends RuntimeException
2020
{
2121
public function __construct(string $message = 'Logout Exception', \Exception $previous = null)
2222
{

0 commit comments

Comments
 (0)
0