lib: Add AuthenticationException for exceptions thrown during authentication

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.
This commit is contained in:
Eric Lippmann 2014-06-02 14:07:59 +02:00
parent ede403977a
commit 5559cf6c2b
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Exception;
use RuntimeException;
/**
* Exception thrown if an error occurs during authentication
*/
class AuthenticationException extends RuntimeException
{
}