16 lines
180 B
PHP
16 lines
180 B
PHP
<?php
|
|
|
|
namespace Kanboard\Core\Ldap;
|
|
|
|
use Exception;
|
|
|
|
/**
|
|
* LDAP Client Exception
|
|
*
|
|
* @package ldap
|
|
* @author Frederic Guillot
|
|
*/
|
|
class ClientException extends Exception
|
|
{
|
|
}
|