blob: 44cb39bfcc3b472213b137921c72aa5034f398d8 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3namespace Adldap\Models;
4
5use Adldap\AdldapException;
6
7/**
8 * Class UserPasswordIncorrectException.
9 *
10 * Thrown when a users password is being changed
11 * and their current password given is incorrect.
12 */
13class UserPasswordIncorrectException extends AdldapException
14{
15 //
16}