mirror of
https://framagit.org/framasoft/framadate/framadate
synced 2026-01-23 18:24:53 +00:00
Handles people voting when the answers valueMax has been reached by someone else in the background Signed-off-by: Thomas Citharel <tcit@tcit.fr>
12 lines
284 B
PHP
12 lines
284 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 {
|
|
function __construct() {
|
|
}
|
|
}
|