7603bed6d9
- Use PHP typings - Update some front-end libraries Signed-off-by: Thomas Citharel <tcit@tcit.fr>
11 lines
249 B
PHP
11 lines
249 B
PHP
<?php
|
|
namespace Framadate\Exception;
|
|
|
|
/**
|
|
* Class ConcurrentVoteException
|
|
*
|
|
* Thrown when a poll has a maximum votes constraint for options, and a vote happened since the poll was rendered
|
|
*/
|
|
class ConcurrentVoteException extends \Exception {
|
|
}
|