18 lines
551 B
PHP
18 lines
551 B
PHP
<?php
|
|
/*
|
|
Condorcet PHP - Election manager and results calculator.
|
|
Designed for the Condorcet method. Integrating a large number of algorithms extending Condorcet. Expandable for all types of voting systems.
|
|
|
|
By Julien Boudry and contributors - MIT LICENSE (Please read LICENSE.txt)
|
|
https://github.com/julien-boudry/Condorcet
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace CondorcetPHP\Condorcet\Throwable;
|
|
|
|
class VoteNotLinkedException extends CondorcetPublicApiException
|
|
{
|
|
protected $message = 'The vote is not linked to an election';
|
|
}
|