mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-07 00:00:12 +02:00
Our user backends log exceptions thrown during authentication but they don't throw a exception to inform the caller that an error occured. The new `AuthenticationException' class should be thrown in that case.
15 lines
249 B
PHP
15 lines
249 B
PHP
<?php
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
namespace Icinga\Exception;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception thrown if an error occurs during authentication
|
|
*/
|
|
class AuthenticationException extends RuntimeException
|
|
{
|
|
}
|